Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Expose config #431

Merged
merged 11 commits into from
Jul 17, 2018
Prev Previous commit
Next Next commit
Removed enums.
Bobby Earl committed Jul 12, 2018

Unverified

No user is associated with the committer email.
commit 6cd9b9dd2cffbdd66d0be8696a076cfc07fb2df8
8 changes: 1 addition & 7 deletions runtime/config.ts
Original file line number Diff line number Diff line change
@@ -19,14 +19,8 @@ export class SkyuxPactConfig {
public pactProxyServer?: string;
}

export enum SkyuxConfigBrowserSet {
speedy,
quirky,
paranoid
}

export interface SkyuxConfigUnitTestSettings {
browserSet?: SkyuxConfigBrowserSet;
browserSet?: 'speedy' | 'quirky' | 'paranoid';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like "speedy" and "quirky" :)

Instead of "paranoid", what do you think about "comprehensive" or "exhaustive", to put a more positive spin on it? (If Paul has already approved "paranoid", disregard.)

}

export interface SkyuxConfigTestSettings {