Skip to content

Commit d35f993

Browse files
Bayheckadil.rakhaliyev
andauthored
bump: gulp-qunit-harness bump (#3065)
* bump: gulp-qunit-harness bump * test skipped in saucelabs due to instability --------- Co-authored-by: adil.rakhaliyev <[email protected]>
1 parent 5a67e0c commit d35f993

File tree

4 files changed

+132
-117
lines changed

4 files changed

+132
-117
lines changed

Gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const { Transform } = require('stream');
55
const childProcess = require('child_process');
66
const gulp = require('gulp');
77
const gulpStep = require('gulp-step');
8-
const qunitHarness = require('gulp-qunit-harness');
8+
const qunitHarness = require('@devexpress/gulp-qunit-harness');
99
const mocha = require('gulp-mocha-simple');
1010
const mustache = require('gulp-mustache');
1111
const rename = require('gulp-rename');

package-lock.json

Lines changed: 128 additions & 114 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"ws": "^7.4.6"
4343
},
4444
"devDependencies": {
45+
"@devexpress/gulp-qunit-harness": "^1.1.0",
4546
"@rollup/plugin-commonjs": "^17.1.0",
4647
"@rollup/plugin-node-resolve": "^11.1.1",
4748
"@testcafe/publish-please": "^5.6.0",
@@ -74,7 +75,6 @@
7475
"gulp-ll-next": "^2.1.0",
7576
"gulp-mocha-simple": "^2.0.0",
7677
"gulp-mustache": "^3.0.1",
77-
"gulp-qunit-harness": "^1.0.3",
7878
"gulp-rename": "^1.2.2",
7979
"gulp-run-command": "0.0.9",
8080
"gulp-step": "^1.0.1",

test/client/fixtures/transport-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ var transport = hammerhead.transport;
77
var nativeMethods = hammerhead.nativeMethods;
88

99
var nativeLocalStorage = nativeMethods.winLocalStorageGetter.call(window);
10+
var isSaucelabs = location.hostname !== 'localhost';
1011

1112
function sendAsyncServiceMsgWithDisableResendingFlag () {
1213
return new Promise(function (resolve, reject) {
@@ -100,7 +101,7 @@ if (!browserUtils.isWebKit && !browserUtils.isFirefox) {
100101
});
101102
});
102103
}
103-
else {
104+
else if (!isSaucelabs) {
104105
test('resend aborted async service msg (WebKit)', function () {
105106
settings.get().sessionId = '%%%testUid%%%';
106107

0 commit comments

Comments
 (0)