Skip to content

Commit 131afd9

Browse files
critesjoshclaude
andcommitted
feat: add demo-wallet and gregoswap repositories
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 37f46c0 commit 131afd9

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

src/repos/config.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,24 @@ const BASE_REPOS: Omit<RepoConfig, "tag">[] = [
9191
code: ["*.nr", "*.ts"],
9292
docs: ["*.md"],
9393
},
94+
},
95+
{
96+
name: "demo-wallet",
97+
url: "https://github.com/AztecProtocol/demo-wallet",
98+
description: "Aztec demo wallet application",
99+
searchPatterns: {
100+
code: ["*.nr", "*.ts"],
101+
docs: ["*.md"],
102+
},
103+
},
104+
{
105+
name: "gregoswap",
106+
url: "https://github.com/AztecProtocol/gregoswap",
107+
description: "Gregoswap - token swap application built on Aztec",
108+
searchPatterns: {
109+
code: ["*.nr", "*.ts"],
110+
docs: ["*.md"],
111+
},
94112
}
95113
];
96114

tests/repos/config.test.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import {
88
} from "../../src/repos/config.js";
99

1010
describe("AZTEC_REPOS", () => {
11-
it("contains 5 repos, each with name/url/description", () => {
12-
expect(AZTEC_REPOS).toHaveLength(5);
11+
it("contains 7 repos, each with name/url/description", () => {
12+
expect(AZTEC_REPOS).toHaveLength(7);
1313
for (const repo of AZTEC_REPOS) {
1414
expect(repo.name).toBeTruthy();
1515
expect(repo.url).toBeTruthy();
@@ -44,7 +44,7 @@ describe("getAztecRepos", () => {
4444
(r) => !r.url.includes("AztecProtocol")
4545
);
4646

47-
expect(aztecProtocolRepos).toHaveLength(3);
47+
expect(aztecProtocolRepos).toHaveLength(5);
4848
for (const repo of aztecProtocolRepos) {
4949
expect(repo.tag).toBe(DEFAULT_AZTEC_VERSION);
5050
}
@@ -90,13 +90,15 @@ describe("getRepoConfig", () => {
9090
});
9191

9292
describe("getRepoNames", () => {
93-
it("returns all 5 names", () => {
93+
it("returns all 7 names", () => {
9494
const names = getRepoNames();
95-
expect(names).toHaveLength(5);
95+
expect(names).toHaveLength(7);
9696
expect(names).toContain("aztec-packages");
9797
expect(names).toContain("noir");
9898
expect(names).toContain("noir-examples");
9999
expect(names).toContain("aztec-examples");
100100
expect(names).toContain("aztec-starter");
101+
expect(names).toContain("demo-wallet");
102+
expect(names).toContain("gregoswap");
101103
});
102104
});

0 commit comments

Comments
 (0)