Skip to content

Commit 5c7f032

Browse files
committedDec 3, 2021
fix: test
1 parent c351fdc commit 5c7f032

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@
164164
"minify": "cross-env NODE_ENV=production browserify src/index.js -o dist/later.min.js -s later -g [ babelify --configFile ./.dist.babelrc ] -p tinyify",
165165
"nyc": "cross-env NODE_ENV=test nyc mocha test/**/*-test.js --reporter dot",
166166
"pretest": "yarn run build && yarn run lint",
167-
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter dot",
167+
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter spec",
168168
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
169169
},
170170
"unpkg": "dist/later.min.js",

‎test/example/recur-example-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ describe('Recur Examples', function () {
345345
});
346346
});
347347

348-
it.skip('Every hour passing over DST', function () {
348+
it('Every hour passing over DST', function () {
349349
// this test will only pass when DST starts on March 10, 2013 at 2ams
350350
later.date.localTime();
351351

0 commit comments

Comments
 (0)
Please sign in to comment.