Skip to content

Commit b287d77

Browse files
committed
Add missing call to done() in the Stimulus functional test
1 parent a3fcb1c commit b287d77

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/functional.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -2072,7 +2072,7 @@ module.exports = {
20722072
});
20732073
});
20742074

2075-
it('Symfony - Stimulus standard app is built correctly', () => {
2075+
it('Symfony - Stimulus standard app is built correctly', (done) => {
20762076
const appDir = testSetup.createTestAppDir();
20772077

20782078
const config = testSetup.createWebpackConfig(appDir, 'www/build', 'dev');
@@ -2097,6 +2097,8 @@ module.exports = {
20972097
webpackAssert.assertOutputFileContains('main.js', 'app-controller');
20982098
webpackAssert.assertOutputFileContains('main.js', 'mock-module-controller');
20992099
webpackAssert.assertOutputFileContains('main.css', 'body {}');
2100+
2101+
done();
21002102
});
21012103
});
21022104

0 commit comments

Comments
 (0)