Skip to content

Commit c2a534e

Browse files
committed
Updated packages
1 parent 88ded74 commit c2a534e

File tree

6 files changed

+1158
-1089
lines changed

6 files changed

+1158
-1089
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# jest-webdriverio-standalone-boilerplate
22

3-
1. `npm i`
4-
3. run tests `npm t`
3+
1. install dependencies `npm ci`
4+
2. run tests `npm t`

global.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ declare module NodeJS {
33
wiremockLauncher: any;
44
chromedriverLauncher: any;
55
}
6-
}
6+
}

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ module.exports = {
33
testEnvironment: 'node',
44
globalSetup: './jest.prepare.ts',
55
globalTeardown: './jest.cleanup.ts',
6-
setupFilesAfterEnv: ['expect-webdriverio']
6+
// setupFilesAfterEnv: ['expect-webdriverio']
77
};

jest.prepare.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { launcher as wiremockLauncher } from 'wdio-wiremock-service';
44
import { config } from './wdio.conf';
55

66
export default async function() {
7-
require('expect-webdriverio');
7+
// require('expect-webdriverio');
88
global.wiremockLauncher = new wiremockLauncher({ rootDir: '__stubs__' });
99
global.chromedriverLauncher = new chromedriverLauncher(config, [config.capabilities], {});
1010
await global.wiremockLauncher.onPrepare();

0 commit comments

Comments
 (0)