This repo contains Playwright tests in TypeScript with Testomat.io plugins
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.
- Clone this repository
git clone [email protected]:testomatio/examples.git && cd examples/playwright
- Install dependencies via npm:
npm i
2.1) Run tests to check if they work (via npm):
npm run test:e2e
2.2) Run only smoke tests (via npm):
npm run test:smoke-examples
2.3) Run only e2e tests (via npm):
npm run test:e2e-examples
This will install Playwright with puppeteer & Testomat.io reporter
- Create empty project in Testomat.io
- Obtain API key from Testomat.io
- Run
npx check-tests
to upload tests data into testomat.io. Pass api key asTESTOMATIO
environment variable:
TESTOMATIO={apiKey} npx check-tests@latest Playwright "**/*{.,_}{test,spec,cy}.ts" --typescript
Environment variables It is recommended to store Testomatio API Key as environment variable and never save it in the source code. Set them directly when running tests or use dotenv package to save environment variable in a file and load them for tests.
Get API key from a project in Testomat.io and set it as environment variable TESTOMATIO
:
TESTOMATIO={apiKey} npx playwright test
or only smoke tests:
TESTOMATIO={key} npx playwright test --config e2e-examples/playwright-smoke.config.ts
Testomatio repoter is enabled in playwright.config.ts
:
reporter: [
['list'],
['@testomatio/reporter/lib/adapter/playwright.js', {
apiKey: process.env.TESTOMATIO,
}]
],
Warning
Two tests has a "FAIL" status... to fix it, see the instructions in the TODO section in files
- => e2e-examples/e2e-tests/1-getting-started.spec.ts
- => e2e-examples/e2e-tests/2-actions.spec.ts