Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit 6b3d9c0

Browse files
CrispusDHcnishina
authored andcommitted
chore(test): move custom/smoke_spec off of the control flow (#5026)
1 parent bf3ffba commit 6b3d9c0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

scripts/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var passingTests = [
3535
'node built/cli.js spec/driverProviderLocalConf.js --useBlockingProxy',
3636
'node built/cli.js spec/getCapabilitiesConf.js',
3737
'node built/cli.js spec/controlLockConf.js',
38-
// 'node built/cli.js spec/customFramework.js',
38+
'node built/cli.js spec/customFramework.js',
3939
// 'node built/cli.js spec/noGlobalsConf.js',
4040
// 'node built/cli.js spec/angular2Conf.js',
4141
'node built/cli.js spec/hybridConf.js',

spec/custom/smoke_spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
describe('smoke jasmine tests', function() {
2-
it('should do some dummy test', function() {
1+
describe('smoke jasmine tests', () => {
2+
it('should do some dummy test', () => {
33
expect(1).toBe(1);
44
});
55
});

spec/customFramework.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
var env = require('./environment.js');
1+
const env = require('./environment.js');
22

33
exports.config = {
44
seleniumAddress: env.seleniumAddress,
5+
SELENIUM_PROMISE_MANAGER: false,
56

67
framework: 'custom',
78
frameworkPath: './custom/framework.js',

0 commit comments

Comments
 (0)