9 lines
257 B
TypeScript
9 lines
257 B
TypeScript
|
|
import { describe, expect, it } from "vitest";
|
||
|
|
import { PortalImpl } from "../src/portalImpl";
|
||
|
|
|
||
|
|
describe("oracle/core package smoke", () => {
|
||
|
|
it("exports oracle runtime portal components", () => {
|
||
|
|
expect(typeof PortalImpl).toBe("function");
|
||
|
|
});
|
||
|
|
});
|