Add 'Copy connection URL' (with password, fetched from the OS keychain on demand) and 'Copy connection URL (no password)' to the connection card kebab menu. Builds postgresql://, mysql://, sqlite://, redis:// strings with percent-encoded credentials and the PG sslmode appended. Bump to v0.7.10.
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
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");
|
|
});
|
|
}); |