Files
bun.sh/src/js/node/test.ts
2025-01-06 14:30:36 -08:00

39 lines
847 B
TypeScript

// Hardcoded module "node:test"
const { throwNotImplemented } = require("internal/shared");
function suite() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
function test() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
function before() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
function after() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
function beforeEach() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
function afterEach() {
throwNotImplemented("node:test", 5090, "bun:test in available in the interim.");
}
export default {
suite,
test,
describe: suite,
it: test,
before,
after,
beforeEach,
afterEach,
};