Skip to content

Commit

Permalink
fix: Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent authored Feb 8, 2024
1 parent eba72d6 commit e46b099
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Tests can be executed via different helpers.
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:

```
git clone git@github.com:codecept-js/examples.git codeceptjs-examples && cd codeceptjs-examples && npm install
git clone git@github.com:codecept-js/examples.git codeceptjs-examples && cd codeceptjs-examples && npm i
```

This will install CodeceptJS with Puppeteer, WebdriverIO & TestCafe packages.
Expand All @@ -27,27 +27,27 @@ npx codeceptjs run --steps

## Puppeteer

Use `codecept.puppeteer.conf.ts` to run tests with Puppeteer:
Use `codecept.puppeteer.conf.js` to run tests with Puppeteer:

```
npx codeceptjs run --steps -c codecept.puppeteer.conf.ts
npx codeceptjs run --steps -c codecept.puppeteer.conf.js
```


## WebdriverIO

Use `codecept.webdriver.conf.ts` to run tests with WebdriverIO in Chrome:
Use `codecept.webdriver.conf.js` to run tests with WebdriverIO in Chrome:

```
npx codeceptjs run -c codecept.webdriver.conf.ts --steps
npx codeceptjs run -c codecept.webdriver.conf.js --steps
```

## TestCafe

Use `codecept.testcafe.conf.ts` to run tests with TestCafe in Chrome:
Use `codecept.testcafe.conf.js` to run tests with TestCafe in Chrome:

```
npx codeceptjs run -c codecept.testcafe.conf.ts --steps
npx codeceptjs run -c codecept.testcafe.conf.js --steps
```

## Headless Mode
Expand Down

0 comments on commit e46b099

Please sign in to comment.