Skip to content

Commit b6961da

Browse files
committed
fix(workboard): remove unused _activeCard variable to fix no-underscore-dangle lint
1 parent d82e085 commit b6961da

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
@@ -108,7 +108,7 @@ describe("registerWorkboardCli", () => {
108108

109109
it("hides archived cards by default in list output", async () => {
110110
const store = new WorkboardStore(createMemoryStore());
111-
const _activeCard = await store.create({ title: "Active card", status: "todo" });
111+
await store.create({ title: "Active card", status: "todo" });
112112
const archivedCard = await store.create({ title: "Archived card", status: "done" });
113113
await store.update(archivedCard.id, {
114114
metadata: { archivedAt: Date.now() },
@@ -125,7 +125,7 @@ describe("registerWorkboardCli", () => {
125125

126126
it("includes archived cards with --include-archived flag", async () => {
127127
const store = new WorkboardStore(createMemoryStore());
128-
const _activeCard = await store.create({ title: "Active card", status: "todo" });
128+
await store.create({ title: "Active card", status: "todo" });
129129
const archivedCard = await store.create({ title: "Archived card", status: "done" });
130130
await store.update(archivedCard.id, {
131131
metadata: { archivedAt: Date.now() },

0 commit comments

Comments
 (0)