Skip to content

Commit d4e1614

Browse files
committed
fix: replace test regex
1 parent 9aed0dc commit d4e1614

File tree

1 file changed

+2
-2
lines changed
  • test/binCases/watch/info-verbosity-verbose

1 file changed

+2
-2
lines changed

test/binCases/watch/info-verbosity-verbose/stdin.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
module.exports = function testAssertions(stdout, stderr, done) {
44
expect(stdout).toEqual(expect.anything());
55
expect(stdout[0]).toContain("");
6-
expect(stdout[1]).toContain("Compilation starting…");
6+
expect(stdout[1]).toContain("Compilation");
77
expect(stdout[2]).toContain("");
88
expect(stdout[3]).toContain("");
99
expect(stdout[4]).toContain("webpack is watching the files…");
1010
expect(stdout[6]).toContain("");
1111
expect(stdout[6]).toContain("");
12-
expect(stdout[7]).toContain("Compilation finished");
12+
expect(stdout[7]).toContain("Compilation");
1313
expect(stdout[8]).toContain("");
1414

1515
expect(stderr).toHaveLength(0);

0 commit comments

Comments
 (0)