1
- import { type BrowserContext , expect , type Page , test } from "@playwright/test" ;
2
1
import { type ChildProcess , exec , spawn } from "node:child_process" ;
3
2
import { randomUUID } from "node:crypto" ;
4
- import express from "express" ;
5
- import capitalize from "lodash/capitalize" ;
6
3
import path from "node:path" ;
7
- import * as ssh from "ssh2" ;
8
4
import { Duplex } from "node:stream" ;
5
+ import { type BrowserContext , type Page , expect , test } from "@playwright/test" ;
9
6
import { API } from "api/api" ;
10
7
import type {
11
- WorkspaceBuildParameter ,
12
8
UpdateTemplateMeta ,
9
+ WorkspaceBuildParameter ,
13
10
} from "api/typesGenerated" ;
11
+ import express from "express" ;
12
+ import capitalize from "lodash/capitalize" ;
13
+ import * as ssh from "ssh2" ;
14
14
import { TarWriter } from "utils/tar" ;
15
15
import {
16
16
agentPProfPort ,
@@ -26,13 +26,13 @@ import {
26
26
Agent ,
27
27
type App ,
28
28
AppSharingLevel ,
29
+ type ApplyComplete ,
30
+ type ExternalAuthProviderResource ,
29
31
type ParseComplete ,
30
32
type PlanComplete ,
31
- type ApplyComplete ,
32
33
type Resource ,
33
34
Response ,
34
35
type RichParameter ,
35
- type ExternalAuthProviderResource ,
36
36
} from "./provisionerGenerated" ;
37
37
38
38
// requiresEnterpriseLicense will skip the test if we're not running with an enterprise license
0 commit comments