chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:30:28 +08:00
commit ba73d7ef36
160 changed files with 37714 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import assert from "node:assert/strict";
import { readFileSync } from "node:fs";
import { test } from "vitest";
const loginSource = readFileSync(new URL("../bin/login.ts", import.meta.url), "utf8");
test("pinme login tracking sends login method through source", () => {
assert.match(loginSource, /source:\s*['"]cli['"]/);
});