Skip to content

Commit

Permalink
Bump watch version to ~0.18.0 (#101)
Browse files Browse the repository at this point in the history
* Reformat by running npm test

* Bump watch version to ~0.18.0
  • Loading branch information
okuryu authored and amasad committed Aug 17, 2017
1 parent 724040e commit 488b969
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"minimatch": "^3.0.2",
"minimist": "^1.1.1",
"walker": "~1.0.5",
"watch": "~0.10.0"
"watch": "~0.18.0"
},
"devDependencies": {
"eslint": "^3.19.0",
Expand Down
22 changes: 11 additions & 11 deletions test/utils-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe.only('RecrawlWarning', function() {
it('new message', function() {
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 1 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 1 times, most recently because:\n/foo/bar/baz:'
),
false
);
Expand All @@ -95,13 +95,13 @@ describe.only('RecrawlWarning', function() {
it('same message twice', function() {
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
),
false
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
),
true
);
Expand All @@ -110,13 +110,13 @@ describe.only('RecrawlWarning', function() {
it('same count, but different root twice', function() {
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
),
false
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/baz\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/baz/bar/baz:'
),
false
);
Expand All @@ -125,19 +125,19 @@ describe.only('RecrawlWarning', function() {
it('incrementing count, but fixed root', function() {
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
),
false
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 3 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
),
false
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 4 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
),
false
);
Expand All @@ -146,19 +146,19 @@ describe.only('RecrawlWarning', function() {
it('decrementing count, but fixed root', function() {
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 4 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
),
false
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 3 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
),
true
);
assert.equal(
RecrawlWarning.isRecrawlWarningDupe(
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
),
true
);
Expand Down

0 comments on commit 488b969

Please sign in to comment.