@@ -1,11 +1,11 @@
|
||||
import { describe, it, expect } from "vitest";
|
||||
import tauriConf from "../../src-tauri/tauri.conf.json";
|
||||
|
||||
describe("tauri bundle config (v0.7.10)", () => {
|
||||
describe("tauri bundle config (v0.7.11)", () => {
|
||||
it("declares bundled pg_tools resources", () => {
|
||||
expect(tauriConf.bundle.resources).toContain("resources/pg_tools/*");
|
||||
});
|
||||
it("version is 0.7.10", () => {
|
||||
expect(tauriConf.version).toBe("0.7.10");
|
||||
it("version is 0.7.11", () => {
|
||||
expect(tauriConf.version).toBe("0.7.11");
|
||||
});
|
||||
});
|
||||
@@ -4,7 +4,7 @@ import { describe, it, expect } from "vitest";
|
||||
import agents from "../../../AGENTS.md?raw";
|
||||
import readme from "../../../README.md?raw";
|
||||
|
||||
describe("v0.7.10 docs coverage", () => {
|
||||
describe("v0.7.11 docs coverage", () => {
|
||||
it("AGENTS.md marks inline cell editing complete", () => {
|
||||
expect(agents).toContain("Inline cell editing");
|
||||
expect(agents).toMatch(/Inline cell editing \| ✅/);
|
||||
@@ -24,8 +24,8 @@ describe("v0.7.10 docs coverage", () => {
|
||||
expect(agents).toMatch(/Connection status indicator on cards \| ✅/);
|
||||
expect(agents).toMatch(/Move-to-folder bulk action \| ✅/);
|
||||
});
|
||||
it("README declares v0.7.10", () => {
|
||||
expect(readme).toContain("0.7.10");
|
||||
it("README declares v0.7.11", () => {
|
||||
expect(readme).toContain("0.7.11");
|
||||
});
|
||||
it("AGENTS.md marks schema CRUD complete", () => {
|
||||
expect(agents).toMatch(/Schema CRUD \| ✅/);
|
||||
@@ -64,9 +64,9 @@ describe("v0.7.10 docs coverage", () => {
|
||||
expect(agents).toMatch(/Cancel long-running queries \| ✅/);
|
||||
expect(agents).toMatch(/Settings export\/import \| ✅/);
|
||||
});
|
||||
it("README links to v0.7.10 assets in both download tables", () => {
|
||||
expect(readme).toContain("releases/download/v0.7.10/");
|
||||
expect(readme).toContain("Gridline_0.7.10_aarch64.dmg");
|
||||
expect(readme).toContain("Gridline-0.7.10-1.x86_64.rpm");
|
||||
it("README links to v0.7.11 assets in both download tables", () => {
|
||||
expect(readme).toContain("releases/download/v0.7.11/");
|
||||
expect(readme).toContain("Gridline_0.7.11_aarch64.dmg");
|
||||
expect(readme).toContain("Gridline-0.7.11-1.x86_64.rpm");
|
||||
});
|
||||
});
|
||||
@@ -2,7 +2,7 @@ import { describe, it, expect } from "vitest";
|
||||
import pkg from "../../package.json";
|
||||
|
||||
describe("version", () => {
|
||||
it("declares v0.7.10 across the app shell", () => {
|
||||
expect(pkg.version).toBe("0.7.10");
|
||||
it("declares v0.7.11 across the app shell", () => {
|
||||
expect(pkg.version).toBe("0.7.11");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user