We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2814308 commit 24df23dCopy full SHA for 24df23d
1 file changed
tests/e2e/00-installation.spec.ts
@@ -10,7 +10,9 @@ import { RancherUI } from './components/rancher-ui'
10
import { Common } from './components/common'
11
12
// source (yarn dev) | github (add github repo) | prime (just install)
13
-const ORIGIN = process.env.ORIGIN || (process.env.API ? 'source' : 'github')
+let ORIGIN = process.env.ORIGIN || (process.env.API ? 'source' : 'github')
14
+// Override prime -> github to fix temporary github runners - issue#1412
15
+ORIGIN = ORIGIN === 'prime' ? 'github' : ORIGIN
16
expect(ORIGIN).toMatch(/^(source|github|prime)$/)
17
18
const MODE = process.env.MODE || 'manual'
0 commit comments