mirror of
https://github.com/garronej/ts-ci.git
synced 2025-12-01 05:43:06 +00:00
9 lines
251 B
TypeScript
9 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"]);
|
||
|
|
});
|
||
|
|
});
|