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

36 lines
955 B
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()
// We remove the function fields from the application's plugins.
const apps = JSON.parse(JSON.stringify(await papi.applications()))
2020-10-30 07:26:30 +00:00
assert.deepEqual(
[
{
name: "goland",
version: "4.0.0",
iconPath: "/icon.svg",
2020-10-30 07:26:30 +00:00
plugin: {
name: "test-plugin",
version: "1.0.0",
description: "Fake plugin for testing code-server's plugin API",
modulePath: path.join(__dirname, "test-plugin"),
2020-10-30 07:26:30 +00:00
},
},
2020-10-30 07:26:30 +00:00
],
apps,
)
})
})