mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2026-03-13 08:41:05 +08:00
8 lines
231 B
TypeScript
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();
|
|
});
|
|
});
|