├── .babelrc ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yaml ├── docs ├── header.png └── use-this-template-button.png ├── package.json ├── playwright.config.ts ├── src ├── k6 │ └── example-test.ts ├── pages │ └── example-page.ts └── playwright │ └── example.spec.ts ├── tsconfig.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/docs/header.png -------------------------------------------------------------------------------- /docs/use-this-template-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/docs/use-this-template-button.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /src/k6/example-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/src/k6/example-test.ts -------------------------------------------------------------------------------- /src/pages/example-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/src/pages/example-page.ts -------------------------------------------------------------------------------- /src/playwright/example.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/src/playwright/example.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ticup/xk6-browser-template-typescript-playwright/HEAD/webpack.config.js --------------------------------------------------------------------------------