Skip to content

Commit

Permalink
test: add project and build names to test runs
Browse files Browse the repository at this point in the history
  • Loading branch information
jason0x43 committed Sep 3, 2020
1 parent b4f8bdc commit 8dc117f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 6 additions & 1 deletion devPackages/intern-config/intern.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
"description": "Base Intern self-test config",

"benchmark": false,

"capabilities": {
"idle-timeout": 60,
"project": "Intern"
},

"coverage": "src/**/*.ts",
"filterErrorStack": false,
"functionalRetries": 1,
Expand Down Expand Up @@ -53,7 +59,6 @@
"ci": {
"description": "Run CI tests on the default cloud service (BrowserStack)",

"capabilities": { "idle-timeout": 60, "project": "Intern" },
"environments": [
{ "browser": "node" },
{ "browser": "internet explorer", "version": "11" },
Expand Down
5 changes: 3 additions & 2 deletions packages/core/intern.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

"extends": "./node_modules/@theintern-dev/intern-config/intern.json",

"capabilities+": { "project": "@theintern/core" },
"capabilities+": {
"build": "@theintern/core 5.0.0-alpha"
},

"coverage": ["src/**/*.ts", "!src/browser/**/*.ts"],

Expand Down Expand Up @@ -162,7 +164,6 @@
},
"tunnel": "browserstack",
"maxConcurrency": 2,
"capabilities": { "idle-timeout": 60 },
"environments": [
{ "browser": "node" },
{ "browser": "internet explorer", "version": "11" },
Expand Down
4 changes: 4 additions & 0 deletions packages/leadfoot/intern.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"$schema": "../core/schemas/config.json",

"capabilities+": {
"build": "@theintern/leadfoot 5.0.0-alpha"
},

"extends": "./node_modules/@theintern-dev/intern-config/intern.json",

"coverage": ["src/**/*.ts"],
Expand Down

0 comments on commit 8dc117f

Please sign in to comment.