German for 'quack', matching the Ente (German for 'duck') naming. All references updated: package name, CLI binary, X-Client-Package header, test descriptions, temp dir prefixes, README, Makefile docker tag.
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { VERSION } from "../src/index.js";
|
|
|
|
describe("quak", () => {
|
|
it("exports a version string", () => {
|
|
expect(typeof VERSION).toBe("string");
|
|
expect(VERSION.length).toBeGreaterThan(0);
|
|
});
|
|
});
|