Skip to content

Commit

Permalink
fix: replace test regex
Browse files Browse the repository at this point in the history
  • Loading branch information
evenstensberg committed Sep 29, 2018
1 parent 9aed0dc commit d4e1614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/binCases/watch/info-verbosity-verbose/stdin.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
module.exports = function testAssertions(stdout, stderr, done) {
expect(stdout).toEqual(expect.anything());
expect(stdout[0]).toContain("");
expect(stdout[1]).toContain("Compilation starting…");
expect(stdout[1]).toContain("Compilation");
expect(stdout[2]).toContain("");
expect(stdout[3]).toContain("");
expect(stdout[4]).toContain("webpack is watching the files…");
expect(stdout[6]).toContain("");
expect(stdout[6]).toContain("");
expect(stdout[7]).toContain("Compilation finished");
expect(stdout[7]).toContain("Compilation");
expect(stdout[8]).toContain("");

expect(stderr).toHaveLength(0);
Expand Down

0 comments on commit d4e1614

Please sign in to comment.