diff --git a/test/01-strings-tests.js b/test/01-strings-tests.js index a027659a65..d96844e33f 100644 --- a/test/01-strings-tests.js +++ b/test/01-strings-tests.js @@ -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', () => { diff --git a/test/02-numbers-tests.js b/test/02-numbers-tests.js index efd42ba022..c4df4adce9 100644 --- a/test/02-numbers-tests.js +++ b/test/02-numbers-tests.js @@ -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', () => { diff --git a/test/03-arrays-tests.js b/test/03-arrays-tests.js index 4e1c2ab644..ca33021595 100644 --- a/test/03-arrays-tests.js +++ b/test/03-arrays-tests.js @@ -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', () => { diff --git a/test/04-date-tests.js b/test/04-date-tests.js index ee60741666..c7a06e422f 100644 --- a/test/04-date-tests.js +++ b/test/04-date-tests.js @@ -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', () => { diff --git a/test/05-regex-tests.js b/test/05-regex-tests.js index 1be396c955..c5c3f3dc94 100644 --- a/test/05-regex-tests.js +++ b/test/05-regex-tests.js @@ -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', () => { diff --git a/test/06-objects-tests.js b/test/06-objects-tests.js index 64fc0ceade..d648d0afff 100644 --- a/test/06-objects-tests.js +++ b/test/06-objects-tests.js @@ -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', () => { diff --git a/test/07-promises-tests.js b/test/07-promises-tests.js index 4c0109d819..5f544c91c9 100644 --- a/test/07-promises-tests.js +++ b/test/07-promises-tests.js @@ -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', () => { diff --git a/test/08-conditions-n-loops-tests.js b/test/08-conditions-n-loops-tests.js index 955224d550..2fa271e41e 100644 --- a/test/08-conditions-n-loops-tests.js +++ b/test/08-conditions-n-loops-tests.js @@ -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', () => { diff --git a/test/09-functions-n-closures-tests.js b/test/09-functions-n-closures-tests.js index 0db66f4075..5b9ddf816a 100644 --- a/test/09-functions-n-closures-tests.js +++ b/test/09-functions-n-closures-tests.js @@ -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', () => {