Skip to content

Commit 0c41192

Browse files
committed
fix: fix tests
1 parent 65333fa commit 0c41192

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ describe('general', () => {
88
.run(path.join(__dirname, '../generators/app'), {
99
tmpdir: false
1010
})
11-
.withPrompts({ projectName: 'tmp' })
11+
.withPrompts({ project: 'tmp' })
1212
.on('end', () => {
1313
done();
1414
});
1515
});
1616

1717
it('creates expected files', () => {
1818
assert.file([
19-
'index.js',
19+
'src/app.js',
2020
]);
2121
});
2222
});

0 commit comments

Comments
 (0)