File tree 3 files changed +0
-15
lines changed
3 files changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,6 @@ export function requiresLicense() {
47
47
test . skip ( ! license ) ;
48
48
}
49
49
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
-
59
50
/**
60
51
* requireTerraformProvisioner by default is enabled.
61
52
*/
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ import { test } from "@playwright/test";
4
4
import {
5
5
createTemplate ,
6
6
createWorkspace ,
7
- failsWithLicense ,
8
7
startAgent ,
9
8
stopAgent ,
10
9
stopWorkspace ,
@@ -14,8 +13,6 @@ import { beforeCoderTest } from "../hooks";
14
13
test . beforeEach ( ( { page } ) => beforeCoderTest ( page ) ) ;
15
14
16
15
test ( "app" , async ( { context, page } ) => {
17
- failsWithLicense ( ) ;
18
-
19
16
const appContent = "Hello World" ;
20
17
const token = randomUUID ( ) ;
21
18
const srv = http
Original file line number Diff line number Diff line change 4
4
createTemplate ,
5
5
createWorkspace ,
6
6
downloadCoderVersion ,
7
- failsWithLicense ,
8
7
sshIntoWorkspace ,
9
8
startAgentWithCommand ,
10
9
stopAgent ,
@@ -18,8 +17,6 @@ const agentVersion = "v2.12.1";
18
17
test . beforeEach ( ( { page } ) => beforeCoderTest ( page ) ) ;
19
18
20
19
test ( `ssh with agent ${ agentVersion } ` , async ( { page } ) => {
21
- failsWithLicense ( ) ;
22
-
23
20
test . setTimeout ( 40_000 ) ; // This is a slow test, 20s may not be enough on Mac.
24
21
25
22
const token = randomUUID ( ) ;
You can’t perform that action at this time.
0 commit comments