We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f7a6c6b + b287d77 commit 5bd9152Copy full SHA for 5bd9152
test/functional.js
@@ -2072,7 +2072,7 @@ module.exports = {
2072
});
2073
2074
2075
- it('Symfony - Stimulus standard app is built correctly', () => {
+ it('Symfony - Stimulus standard app is built correctly', (done) => {
2076
const appDir = testSetup.createTestAppDir();
2077
2078
const config = testSetup.createWebpackConfig(appDir, 'www/build', 'dev');
@@ -2097,6 +2097,8 @@ module.exports = {
2097
webpackAssert.assertOutputFileContains('main.js', 'app-controller');
2098
webpackAssert.assertOutputFileContains('main.js', 'mock-module-controller');
2099
webpackAssert.assertOutputFileContains('main.css', 'body {}');
2100
+
2101
+ done();
2102
2103
2104
0 commit comments