├── .gitignore ├── .travis.yml ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── playwright-logo.png └── preview.gif ├── package.json └── snippets ├── snippets.json └── snippets.spec.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | temp 3 | *.vsix -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/playwright-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/images/playwright-logo.png -------------------------------------------------------------------------------- /images/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/images/preview.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /snippets/snippets.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitayneeman/vscode-playwright-snippets/HEAD/snippets/snippets.spec.js --------------------------------------------------------------------------------