Skip to content

Commit

Permalink
temporary remove the testTestcafeRest task for alpha (#108)
Browse files Browse the repository at this point in the history
update jimp and mocha versions
  • Loading branch information
AlexKamaev authored Mar 23, 2020
1 parent a83090a commit f7179ec
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .auditignore

This file was deleted.

2 changes: 1 addition & 1 deletion Gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ function testTestcafeAutomate () {
exports.clean = clean;
exports.lint = lint;
exports.build = gulp.parallel(gulp.series(clean, build), lint);
exports.test = gulp.series(exports.build, testMochaRest, testMochaAutomate, testTestcafeRest, testTestcafeAutomate);
exports.test = gulp.series(exports.build, testMochaRest, testMochaAutomate, testTestcafeAutomate);
exports.testTestcafeRest = gulp.series(exports.build, testTestcafeRest);
exports.testTestcafeAutomate = gulp.series(exports.build, testTestcafeAutomate);
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"dedent": "^0.7.0",
"desired-capabilities": "^0.1.0",
"firefox-profile": "^1.3.1",
"jimp": "^0.6.4",
"jimp": "^0.9.6",
"lodash": "^4.17.15",
"mime-db": "^1.43.0",
"os-family": "^1.0.0",
Expand All @@ -57,7 +57,7 @@
"gulp": "^4.0.0",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"mocha": "^5.0.1",
"mocha": "^7.1.1",
"publish-please": "^5.4.3",
"testcafe": "latest"
}
Expand Down
2 changes: 1 addition & 1 deletion test/testcafe/fixtures/screenshot-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fixture `Screenshot`
.before(() => del('.screenshots/*'))
.after(() => del('.screenshots/*'));

test.skip('Take screenshot', async t => {
test('Take screenshot', async t => {
var screenshotName = getTempFileName({ template: 'screenshot-XXXXXX.png' });
var screenshotPath = path.join('.screenshots', screenshotName);

Expand Down

0 comments on commit f7179ec

Please sign in to comment.