Skip to content

Commit

Permalink
🙁 Make the tasks step by step. From the easiest to the difficult ones.
Browse files Browse the repository at this point in the history
mikhama committed Nov 21, 2019
1 parent b332b12 commit bad4737
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion test/01-strings-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/01-strings-tasks');
const tasks = require('../src/01-strings-tasks');
it.optional = require('../extensions/it-optional');

describe('01-strings-tasks', () => {
2 changes: 1 addition & 1 deletion test/02-numbers-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/02-numbers-tasks');
const tasks = require('../src/02-numbers-tasks');
it.optional = require('../extensions/it-optional');

describe('02-numbers-tasks', () => {
2 changes: 1 addition & 1 deletion test/03-arrays-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/03-arrays-tasks');
const tasks = require('../src/03-arrays-tasks');
it.optional = require('../extensions/it-optional');

describe('03-arrays-tasks', () => {
2 changes: 1 addition & 1 deletion test/04-date-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/04-date-tasks');
const tasks = require('../src/04-date-tasks');
it.optional = require('../extensions/it-optional');

describe('04-date-tasks', () => {
2 changes: 1 addition & 1 deletion test/05-regex-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/05-regex-tasks');
const tasks = require('../src/05-regex-tasks');
it.optional = require('../extensions/it-optional');

describe('05-regex-tasks', () => {
2 changes: 1 addition & 1 deletion test/06-objects-tests.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* eslint-disable array-bracket-spacing */
const assert = require('assert');
const tasks = require('../task/06-objects-tasks');
const tasks = require('../src/06-objects-tasks');
it.optional = require('../extensions/it-optional');

describe('06-objects-tasks', () => {
2 changes: 1 addition & 1 deletion test/07-promises-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/07-promises-tasks');
const tasks = require('../src/07-promises-tasks');
it.optional = require('../extensions/it-optional');

describe('07-promises-tasks', () => {
2 changes: 1 addition & 1 deletion test/08-conditions-n-loops-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/08-conditions-n-loops-tasks');
const tasks = require('../src/08-conditions-n-loops-tasks');
it.optional = require('../extensions/it-optional');

describe('08-conditions-n-loops-tasks', () => {
2 changes: 1 addition & 1 deletion test/09-functions-n-closures-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const assert = require('assert');
const tasks = require('../task/09-functions-n-closures-tasks');
const tasks = require('../src/09-functions-n-closures-tasks');
it.optional = require('../extensions/it-optional');

describe('09-functions-n-closures-tasks', () => {

0 comments on commit bad4737

Please sign in to comment.