Skip to content

Commit ae28e58

Browse files
Added test settings for e2e (blackbaud#459)
1 parent 4a098e8 commit ae28e58

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

runtime/config.ts

+5
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,16 @@ export class SkyuxPactConfig {
1919
public pactProxyServer?: string;
2020
}
2121

22+
export interface SkyuxConfigE2ETestSettings {
23+
browserSet?: 'speedy';
24+
}
25+
2226
export interface SkyuxConfigUnitTestSettings {
2327
browserSet?: 'speedy' | 'quirky' | 'paranoid';
2428
}
2529

2630
export interface SkyuxConfigTestSettings {
31+
e2e?: SkyuxConfigE2ETestSettings;
2732
unit?: SkyuxConfigUnitTestSettings;
2833
}
2934

skyuxconfig-schema.json

+13
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,19 @@
252252
"description": "Container for controlling test settings.",
253253
"type": "object",
254254
"properties": {
255+
"e2e": {
256+
"description": "Test settings specific to the skyux e2e command.",
257+
"type": "object",
258+
"properties": {
259+
"browserSet": {
260+
"description": "The named set of browsers to run against.",
261+
"type": "string",
262+
"enum": [
263+
"speedy"
264+
]
265+
}
266+
}
267+
},
255268
"unit": {
256269
"description": "Test settings specific to the skyux test command.",
257270
"type": "object",

0 commit comments

Comments
 (0)