Skip to content

Commit 488b969

Browse files
okuryuamasad
authored andcommitted
Bump watch version to ~0.18.0 (#101)
* Reformat by running npm test * Bump watch version to ~0.18.0
1 parent 724040e commit 488b969

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"minimatch": "^3.0.2",
3535
"minimist": "^1.1.1",
3636
"walker": "~1.0.5",
37-
"watch": "~0.10.0"
37+
"watch": "~0.18.0"
3838
},
3939
"devDependencies": {
4040
"eslint": "^3.19.0",

test/utils-test.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe.only('RecrawlWarning', function() {
8686
it('new message', function() {
8787
assert.equal(
8888
RecrawlWarning.isRecrawlWarningDupe(
89-
'Recrawled this watch 1 times, most recently because:\n\/foo\/bar\/baz:'
89+
'Recrawled this watch 1 times, most recently because:\n/foo/bar/baz:'
9090
),
9191
false
9292
);
@@ -95,13 +95,13 @@ describe.only('RecrawlWarning', function() {
9595
it('same message twice', function() {
9696
assert.equal(
9797
RecrawlWarning.isRecrawlWarningDupe(
98-
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
98+
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
9999
),
100100
false
101101
);
102102
assert.equal(
103103
RecrawlWarning.isRecrawlWarningDupe(
104-
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
104+
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
105105
),
106106
true
107107
);
@@ -110,13 +110,13 @@ describe.only('RecrawlWarning', function() {
110110
it('same count, but different root twice', function() {
111111
assert.equal(
112112
RecrawlWarning.isRecrawlWarningDupe(
113-
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
113+
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
114114
),
115115
false
116116
);
117117
assert.equal(
118118
RecrawlWarning.isRecrawlWarningDupe(
119-
'Recrawled this watch 2 times, most recently because:\n\/baz\/bar\/baz:'
119+
'Recrawled this watch 2 times, most recently because:\n/baz/bar/baz:'
120120
),
121121
false
122122
);
@@ -125,19 +125,19 @@ describe.only('RecrawlWarning', function() {
125125
it('incrementing count, but fixed root', function() {
126126
assert.equal(
127127
RecrawlWarning.isRecrawlWarningDupe(
128-
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
128+
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
129129
),
130130
false
131131
);
132132
assert.equal(
133133
RecrawlWarning.isRecrawlWarningDupe(
134-
'Recrawled this watch 3 times, most recently because:\n\/foo\/bar\/baz:'
134+
'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
135135
),
136136
false
137137
);
138138
assert.equal(
139139
RecrawlWarning.isRecrawlWarningDupe(
140-
'Recrawled this watch 4 times, most recently because:\n\/foo\/bar\/baz:'
140+
'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
141141
),
142142
false
143143
);
@@ -146,19 +146,19 @@ describe.only('RecrawlWarning', function() {
146146
it('decrementing count, but fixed root', function() {
147147
assert.equal(
148148
RecrawlWarning.isRecrawlWarningDupe(
149-
'Recrawled this watch 4 times, most recently because:\n\/foo\/bar\/baz:'
149+
'Recrawled this watch 4 times, most recently because:\n/foo/bar/baz:'
150150
),
151151
false
152152
);
153153
assert.equal(
154154
RecrawlWarning.isRecrawlWarningDupe(
155-
'Recrawled this watch 3 times, most recently because:\n\/foo\/bar\/baz:'
155+
'Recrawled this watch 3 times, most recently because:\n/foo/bar/baz:'
156156
),
157157
true
158158
);
159159
assert.equal(
160160
RecrawlWarning.isRecrawlWarningDupe(
161-
'Recrawled this watch 2 times, most recently because:\n\/foo\/bar\/baz:'
161+
'Recrawled this watch 2 times, most recently because:\n/foo/bar/baz:'
162162
),
163163
true
164164
);

0 commit comments

Comments
 (0)