File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 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"
66import * as path from "path"
77import { PluginAPI } from "../src/node/plugin"
88import * as apps from "../src/node/routes/apps"
9- import * as testutil from "./testutil "
9+ import * as httpserver from "./httpserver "
1010const fsp = fs . promises
1111
1212/**
1313 * Use $LOG_LEVEL=debug to see debug logs.
1414 */
1515describe ( "plugin" , ( ) => {
1616 let papi : PluginAPI
17- let s : testutil . HttpServer
17+ let s : httpserver . HttpServer
1818
1919 before ( async ( ) => {
2020 papi = new PluginAPI ( logger , `${ path . resolve ( __dirname , "test-plugin" ) } :meow` )
@@ -24,7 +24,7 @@ describe("plugin", () => {
2424 papi . mount ( app )
2525 app . use ( "/api/applications" , apps . router ( papi ) )
2626
27- s = new testutil . HttpServer ( )
27+ s = new httpserver . HttpServer ( )
2828 await s . listen ( app )
2929 } )
3030
You can’t perform that action at this time.
0 commit comments