From a7fff34653d3f64b80f15b6376ac7c0a0309c20b Mon Sep 17 00:00:00 2001 From: Harminder Virk Date: Sun, 24 Sep 2017 22:43:32 +0530 Subject: [PATCH] fix(command): fix failing tests --- test/unit/make-test.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/make-test.spec.js b/test/unit/make-test.spec.js index 1401166..0763ad9 100644 --- a/test/unit/make-test.spec.js +++ b/test/unit/make-test.spec.js @@ -20,14 +20,14 @@ test.group('Make test', (group) => { test('create a test file', async (assert) => { const make = new MakeTest() await make.handle({ name: 'Foo' }, { unit: true }) - const exists = await make.pathExists(path.join(__dirname, './sample/test/unit/Foo.spec.js')) + const exists = await make.pathExists(path.join(__dirname, './sample/test/unit/foo.spec.js')) assert.isTrue(exists) }) test('create a functional test file', async (assert) => { const make = new MakeTest() await make.handle({ name: 'Bar' }, { functional: true, unit: true }) - const exists = await make.pathExists(path.join(__dirname, './sample/test/functional/Bar.spec.js')) + const exists = await make.pathExists(path.join(__dirname, './sample/test/functional/bar.spec.js')) assert.isTrue(exists) })