Skip to content

Commit 73cbc6e

Browse files
committed
test(workboard): avoid unused archive fixture binding
1 parent 210aa6d commit 73cbc6e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/workboard/src/cli.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ describe("registerWorkboardCli", () => {
155155

156156
it("hides archived cards from workboard list by default", async () => {
157157
const store = new WorkboardStore(createMemoryStore());
158-
const _active = await store.create({ title: "active-card" });
158+
await store.create({ title: "active-card" });
159159
const archived = await store.create({ title: "archived-card" });
160160
await store.update(archived.id, { metadata: { archivedAt: Date.now() } });
161161
const program = createProgram(store);
@@ -170,7 +170,7 @@ describe("registerWorkboardCli", () => {
170170

171171
it("shows archived cards with --include-archived flag", async () => {
172172
const store = new WorkboardStore(createMemoryStore());
173-
const _active = await store.create({ title: "active-card" });
173+
await store.create({ title: "active-card" });
174174
const archived = await store.create({ title: "archived-card" });
175175
await store.update(archived.id, { metadata: { archivedAt: Date.now() } });
176176
const program = createProgram(store);

0 commit comments

Comments
 (0)