MCPcopy Create free account
hub / github.com/coder/coder / requiresLicense

Function requiresLicense

site/e2e/helpers.ts:48–54  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

46 * requiresLicense will skip the test if we're not running with a license added
47 */
48export function requiresLicense() {
49 if (premiumTestsRequired) {
50 return;
51 }
52
53 test.skip(!license);
54}
55
56export function requiresUnlicensed() {
57 test.skip(license.length > 0);

Calls

no outgoing calls

Tested by

no test coverage detected