Files
vueecharts/tests/style.node.test.ts
2025-12-31 10:31:40 +08:00

8 lines
231 B
TypeScript

import { describe, it, expect } from "vitest";
describe("style entry (node)", () => {
it("does nothing when not in a browser environment", async () => {
await expect(import("../src/style")).resolves.toBeDefined();
});
});