From e46b099dc5f5c103990e93a340d881500089ba22 Mon Sep 17 00:00:00 2001 From: KobeN <7845001+kobenguyent@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:14:06 +0100 Subject: [PATCH] fix: Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c56e1a3..4dc0706 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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