-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from gemini-testing/TESTPLANE-265.do_not_activ…
…ate_by_default fix: do not activate extension if config is not found
- Loading branch information
Showing
29 changed files
with
14,862 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "empty", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"testplane.configPath": "./another-config/testplane.config.ts" | ||
} |
27 changes: 27 additions & 0 deletions
27
samples/vscode-settings/another-config/testplane.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
export default { | ||
gridUrl: "http://localhost:4444/wd/hub", | ||
baseUrl: "http://localhost", | ||
pageLoadTimeout: 0, | ||
httpTimeout: 60000, | ||
testTimeout: 90000, | ||
resetCursor: false, | ||
takeScreenshotOnFails: { | ||
testFail: false, | ||
assertViewFail: false, | ||
}, | ||
sets: { | ||
desktop: { | ||
files: ["tests/**/*.testplane.ts"], | ||
browsers: ["another-bro"], | ||
}, | ||
}, | ||
browsers: { | ||
"another-bro": { | ||
automationProtocol: "devtools", | ||
headless: true, | ||
desiredCapabilities: { | ||
browserName: "another-bro", | ||
}, | ||
}, | ||
}, | ||
}; |
Oops, something went wrong.