code-server-2/test/plugin.test.ts

42 lines
1.0 KiB
TypeScript
Raw Normal View History

import { logger } from "@coder/logger"
import * as assert from "assert"
2020-10-30 07:26:30 +00:00
import { describe } from "mocha"
import * as path from "path"
import { PluginAPI } from "../src/node/plugin"
/**
* Use $LOG_LEVEL=debug to see debug logs.
*/
describe("plugin", () => {
it("loads", async () => {
const papi = new PluginAPI(logger, path.resolve(__dirname, "test-plugin") + ":meow")
await papi.loadPlugins()
2020-11-03 21:24:06 +00:00
const apps = await papi.applications()
2020-10-30 07:26:30 +00:00
assert.deepEqual(
[
{
name: "Test App",
2020-10-30 07:26:30 +00:00
version: "4.0.0",
description: "This app does XYZ.",
iconPath: "/test-plugin/test-app/icon.svg",
path: "/test-plugin/test-app",
2020-10-30 07:26:30 +00:00
plugin: {
name: "test-plugin",
version: "1.0.0",
modulePath: path.join(__dirname, "test-plugin"),
displayName: "Test Plugin",
description: "Plugin used in code-server tests.",
routerPath: "/test-plugin",
2020-10-30 07:26:30 +00:00
},
},
2020-10-30 07:26:30 +00:00
],
apps,
)
})
})