Skip to content

Commit a5ab2d1

Browse files
committed
test: Rename testutil.ts to httpserver.ts
1 parent fd2718d commit a5ab2d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
File renamed without changes.

test/plugin.test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ import { describe } from "mocha"
66
import * as path from "path"
77
import { PluginAPI } from "../src/node/plugin"
88
import * as apps from "../src/node/routes/apps"
9-
import * as testutil from "./testutil"
9+
import * as httpserver from "./httpserver"
1010
const fsp = fs.promises
1111

1212
/**
1313
* Use $LOG_LEVEL=debug to see debug logs.
1414
*/
1515
describe("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

0 commit comments

Comments
 (0)