Skip to content

Commit f7179ec

Browse files
authored
temporary remove the testTestcafeRest task for alpha (#108)
update jimp and mocha versions
1 parent a83090a commit f7179ec

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.auditignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,6 @@ function testTestcafeAutomate () {
105105
exports.clean = clean;
106106
exports.lint = lint;
107107
exports.build = gulp.parallel(gulp.series(clean, build), lint);
108-
exports.test = gulp.series(exports.build, testMochaRest, testMochaAutomate, testTestcafeRest, testTestcafeAutomate);
108+
exports.test = gulp.series(exports.build, testMochaRest, testMochaAutomate, testTestcafeAutomate);
109109
exports.testTestcafeRest = gulp.series(exports.build, testTestcafeRest);
110110
exports.testTestcafeAutomate = gulp.series(exports.build, testTestcafeAutomate);

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"dedent": "^0.7.0",
3636
"desired-capabilities": "^0.1.0",
3737
"firefox-profile": "^1.3.1",
38-
"jimp": "^0.6.4",
38+
"jimp": "^0.9.6",
3939
"lodash": "^4.17.15",
4040
"mime-db": "^1.43.0",
4141
"os-family": "^1.0.0",
@@ -57,7 +57,7 @@
5757
"gulp": "^4.0.0",
5858
"gulp-babel": "^6.1.2",
5959
"gulp-eslint": "^3.0.1",
60-
"mocha": "^5.0.1",
60+
"mocha": "^7.1.1",
6161
"publish-please": "^5.4.3",
6262
"testcafe": "latest"
6363
}

test/testcafe/fixtures/screenshot-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fixture `Screenshot`
1010
.before(() => del('.screenshots/*'))
1111
.after(() => del('.screenshots/*'));
1212

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

0 commit comments

Comments
 (0)