We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c77f4 commit 2bbeb19Copy full SHA for 2bbeb19
.devcontainer/devcontainer.json
@@ -16,6 +16,7 @@
16
17
// Use 'postCreateCommand' to run commands after the container is created.
18
// We install playwright this way to make browsers available for python playwright
19
+ // When running playwright install from python installation something breaks in devcontainer setup
20
"postCreateCommand": "poetry install && npm install playwright && npx playwright install --with-deps",
21
22
// Configure tool-specific properties.
.gitignore
@@ -1,2 +1,9 @@
1
__pycache__
2
+
3
+# Results of playwright tests with tracing
4
test-results/
5
6
+# Files from playwright installed with npm
7
+node_modules
8
+package-lock.json
9
+package.json
0 commit comments