Skip to content

Commit

Permalink
adapt existing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
juergba committed Apr 9, 2020
1 parent ccc1ed2 commit 6c85228
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/integration/glob.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"failures":0,'
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"skipped":0,"failures":0,'
);
},
done
Expand Down Expand Up @@ -53,7 +53,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"failures":0,'
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"skipped":0,"failures":0,'
);
expect(
results.stderr,
Expand All @@ -74,7 +74,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"failures":0,'
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"skipped":0,"failures":0,'
);
},
done
Expand Down Expand Up @@ -112,7 +112,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"failures":0,'
'["end",{"suites":1,"tests":1,"passes":1,"pending":0,"skipped":0,"failures":0,'
);
expect(
results.stderr,
Expand All @@ -132,7 +132,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":2,"tests":2,"passes":2,"pending":0,"failures":0,'
'["end",{"suites":2,"tests":2,"passes":2,"pending":0,"skipped":0,"failures":0,'
);
},
done
Expand Down Expand Up @@ -160,7 +160,7 @@ describe('globbing', function() {
expect(
results.stdout,
'to contain',
'["end",{"suites":2,"tests":2,"passes":2,"pending":0,"failures":0,'
'["end",{"suites":2,"tests":2,"passes":2,"pending":0,"skipped":0,"failures":0,'
);
expect(
results.stderr,
Expand Down

0 comments on commit 6c85228

Please sign in to comment.