mirror of
https://github.com/github/awesome-copilot.git
synced 2026-08-07 01:28:46 +00:00
10 lines
398 B
JavaScript
10 lines
398 B
JavaScript
import assert from "node:assert/strict";
|
|
import { test } from "node:test";
|
|
import { materializePlugins } from "./materialize-plugins.mjs";
|
|
import { generateMarketplace } from "./generate-marketplace.mjs";
|
|
|
|
test("build scripts expose callable APIs without running on import", () => {
|
|
assert.equal(typeof materializePlugins, "function");
|
|
assert.equal(typeof generateMarketplace, "function");
|
|
});
|