mirror of
https://github.com/viktoruj/obsidian-cloud-kms.git
synced 2026-07-22 17:30:23 +00:00
12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
import { describe, it, expect } from "vitest";
|
|
|
|
describe("project setup", () => {
|
|
it("vitest runs successfully", () => {
|
|
expect(1 + 1).toBe(2);
|
|
});
|
|
|
|
it("TypeScript types work", () => {
|
|
const value: number = 42;
|
|
expect(value).toBe(42);
|
|
});
|
|
});
|