21 lines
683 B
TypeScript
21 lines
683 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { manifest } from "../../src/toolbox/manifest";
|
|
import { APP_VERSION } from "../../src/version";
|
|
|
|
describe("Toolbox manifest", () => {
|
|
it("keeps the release and source identity pinned", () => {
|
|
expect(manifest.id).toBe("de.add-ideas.office-tools");
|
|
expect(manifest.version).toBe(APP_VERSION);
|
|
expect(manifest.entry).toBe("./");
|
|
expect(manifest.source).toEqual({
|
|
repository: "https://git.add-ideas.de/lotobo/office-tools",
|
|
license: "GPL-3.0-or-later",
|
|
});
|
|
expect(manifest.privacy).toMatchObject({
|
|
processing: "local",
|
|
fileUploads: false,
|
|
telemetry: false,
|
|
});
|
|
});
|
|
});
|