You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Tests can be executed via different helpers.
8
8
This is a playground for your first steps in testing, so instead of installing it from NPM it is recommended to clone it from repo instead and then install the dependencies:
9
9
10
10
```
11
-
git clone git@github.com:codecept-js/examples.git codeceptjs-examples && cd codeceptjs-examples && npm install
11
+
git clone git@github.com:codecept-js/examples.git codeceptjs-examples && cd codeceptjs-examples && npm i
12
12
```
13
13
14
14
This will install CodeceptJS with Puppeteer, WebdriverIO & TestCafe packages.
@@ -27,27 +27,27 @@ npx codeceptjs run --steps
27
27
28
28
## Puppeteer
29
29
30
-
Use `codecept.puppeteer.conf.ts` to run tests with Puppeteer:
30
+
Use `codecept.puppeteer.conf.js` to run tests with Puppeteer:
31
31
32
32
```
33
-
npx codeceptjs run --steps -c codecept.puppeteer.conf.ts
33
+
npx codeceptjs run --steps -c codecept.puppeteer.conf.js
34
34
```
35
35
36
36
37
37
## WebdriverIO
38
38
39
-
Use `codecept.webdriver.conf.ts` to run tests with WebdriverIO in Chrome:
39
+
Use `codecept.webdriver.conf.js` to run tests with WebdriverIO in Chrome:
40
40
41
41
```
42
-
npx codeceptjs run -c codecept.webdriver.conf.ts --steps
42
+
npx codeceptjs run -c codecept.webdriver.conf.js --steps
43
43
```
44
44
45
45
## TestCafe
46
46
47
-
Use `codecept.testcafe.conf.ts` to run tests with TestCafe in Chrome:
47
+
Use `codecept.testcafe.conf.js` to run tests with TestCafe in Chrome:
48
48
49
49
```
50
-
npx codeceptjs run -c codecept.testcafe.conf.ts --steps
50
+
npx codeceptjs run -c codecept.testcafe.conf.js --steps
0 commit comments