feat: release Office Tools 0.1.0
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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,
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user