Skip to content
This repository has been archived by the owner on Jan 27, 2025. It is now read-only.

Commit

Permalink
NO TICKET - Run integration tests against local Chrome (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
3link authored Aug 23, 2022
1 parent 27b6a16 commit 7dd8131
Show file tree
Hide file tree
Showing 6 changed files with 1,170 additions and 75 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ local.log
.nyc_output
*.cid
coverage.lcov
driver-logs/wdio-chromedriver.log
23 changes: 23 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Run IT Test",
"type": "node",
"request": "launch",
"args": ["test-config/wdio.local.chrome.conf.js", "--spec"],
"cwd": "${workspaceFolder}",
"autoAttachChildProcesses": true,
"program": "${workspaceRoot}/node_modules/@wdio/cli/bin/wdio.js",
"console": "integratedTerminal",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/lib/**/*.js",
"<node_internals>/**/*.js"
]
}
]
}
Loading

0 comments on commit 7dd8131

Please sign in to comment.