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.
1 parent 49f2956 commit b840918Copy full SHA for b840918
1 file changed
test/create-webpack-app/init/init.test.js
@@ -133,7 +133,7 @@ describe("create-webpack-app cli", () => {
133
// Check if the generated webpack configuration matches the snapshot
134
expect(readFromWebpackConfig(dir)).toMatchSnapshot();
135
136
- const { stdout: nextStdout } = await runPromptWithAnswers(
+ await runPromptWithAnswers(
137
dir,
138
["init"],
139
[
@@ -150,9 +150,6 @@ describe("create-webpack-app cli", () => {
150
],
151
);
152
153
- expect(nextStdout).toContain("Project has been initialised with webpack!");
154
- expect(nextStdout).toContain("webpack.config.js");
155
-
156
for (const file of defaultTemplateFiles) {
157
expect(existsSync(resolve(dir, file))).toBeTruthy();
158
}
0 commit comments