Skip to content

Commit 72f9fa8

Browse files
committed
oh, well fine then
1 parent ac65ef7 commit 72f9fa8

File tree

3 files changed

+0
-15
lines changed

3 files changed

+0
-15
lines changed

site/e2e/helpers.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,6 @@ export function requiresLicense() {
4747
test.skip(!license);
4848
}
4949

50-
/**
51-
* Marks tests that need to be fixed, because they fail for hard to fix/diagnose
52-
* reasons when a license is added.
53-
* @deprecated Do not add this to any additional tests.
54-
*/
55-
export function failsWithLicense() {
56-
test.skip(Boolean(license));
57-
}
58-
5950
/**
6051
* requireTerraformProvisioner by default is enabled.
6152
*/

site/e2e/tests/app.spec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import { test } from "@playwright/test";
44
import {
55
createTemplate,
66
createWorkspace,
7-
failsWithLicense,
87
startAgent,
98
stopAgent,
109
stopWorkspace,
@@ -14,8 +13,6 @@ import { beforeCoderTest } from "../hooks";
1413
test.beforeEach(({ page }) => beforeCoderTest(page));
1514

1615
test("app", async ({ context, page }) => {
17-
failsWithLicense();
18-
1916
const appContent = "Hello World";
2017
const token = randomUUID();
2118
const srv = http

site/e2e/tests/outdatedAgent.spec.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import {
44
createTemplate,
55
createWorkspace,
66
downloadCoderVersion,
7-
failsWithLicense,
87
sshIntoWorkspace,
98
startAgentWithCommand,
109
stopAgent,
@@ -18,8 +17,6 @@ const agentVersion = "v2.12.1";
1817
test.beforeEach(({ page }) => beforeCoderTest(page));
1918

2019
test(`ssh with agent ${agentVersion}`, async ({ page }) => {
21-
failsWithLicense();
22-
2320
test.setTimeout(40_000); // This is a slow test, 20s may not be enough on Mac.
2421

2522
const token = randomUUID();

0 commit comments

Comments
 (0)