Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowgate15 committed Dec 3, 2021
1 parent c351fdc commit 5c7f032
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@
"minify": "cross-env NODE_ENV=production browserify src/index.js -o dist/later.min.js -s later -g [ babelify --configFile ./.dist.babelrc ] -p tinyify",
"nyc": "cross-env NODE_ENV=test nyc mocha test/**/*-test.js --reporter dot",
"pretest": "yarn run build && yarn run lint",
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter dot",
"test": "cross-env NODE_ENV=test mocha test/**/*-test.js --reporter spec",
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
},
"unpkg": "dist/later.min.js",
Expand Down
2 changes: 1 addition & 1 deletion test/example/recur-example-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ describe('Recur Examples', function () {
});
});

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

Expand Down

0 comments on commit 5c7f032

Please sign in to comment.