mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
8 lines
251 B
TypeScript
8 lines
251 B
TypeScript
import { describe, it, expect } from "vitest";
|
|
import { myObject } from "../src/myObject";
|
|
|
|
describe("Test myObject", () => {
|
|
it("Should have the correct keys", async () => {
|
|
expect(Object.keys(myObject)).toStrictEqual(["p"]);
|
|
});
|
|
});
|