Skip to content

Commit

Permalink
fix test file name
Browse files Browse the repository at this point in the history
  • Loading branch information
xavdid committed Feb 17, 2021
1 parent 43c02e4 commit 1983596
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/cli/src/smoke-tests/smoke-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,12 @@ describe('smoke tests - setup will take some time', () => {
const newTrigger = path.join(newAppDir, 'triggers', 'neat.js');
fs.existsSync(newTrigger).should.be.true();

const newTriggerTest = path.join(newAppDir, 'test', 'triggers', 'neat.js');
const newTriggerTest = path.join(
newAppDir,
'test',
'triggers',
'neat.test.js'
);
fs.existsSync(newTriggerTest).should.be.true();

const pkg = JSON.parse(
Expand Down

0 comments on commit 1983596

Please sign in to comment.