File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed File renamed without changes.
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ import { describe } from "mocha"
6
6
import * as path from "path"
7
7
import { PluginAPI } from "../src/node/plugin"
8
8
import * as apps from "../src/node/routes/apps"
9
- import * as testutil from "./testutil "
9
+ import * as httpserver from "./httpserver "
10
10
const fsp = fs . promises
11
11
12
12
/**
13
13
* Use $LOG_LEVEL=debug to see debug logs.
14
14
*/
15
15
describe ( "plugin" , ( ) => {
16
16
let papi : PluginAPI
17
- let s : testutil . HttpServer
17
+ let s : httpserver . HttpServer
18
18
19
19
before ( async ( ) => {
20
20
papi = new PluginAPI ( logger , `${ path . resolve ( __dirname , "test-plugin" ) } :meow` )
@@ -24,7 +24,7 @@ describe("plugin", () => {
24
24
papi . mount ( app )
25
25
app . use ( "/api/applications" , apps . router ( papi ) )
26
26
27
- s = new testutil . HttpServer ( )
27
+ s = new httpserver . HttpServer ( )
28
28
await s . listen ( app )
29
29
} )
30
30
You can’t perform that action at this time.
0 commit comments