Skip to content

Commit

Permalink
Linter warnings in mutate.e2e.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
samayer12 committed Nov 5, 2024
1 parent 15903d6 commit 52acc83
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions hello-pepr-mutate/capabilities/mutate.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ describe("mutate.ts", () => {
});

describe("mutate create-or-updates", () => {
let ns, cyay, cmeh, coof, umeh, uoof;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
let ns, cyay, cmeh, coof, uyay, umeh, uoof;

beforeAll(async () => {
[ns, cyay, cmeh, coof, umeh, uoof] = await trc.load(
[ns, cyay, cmeh, coof, uyay, umeh, uoof] = await trc.load(
`${trc.root()}/capabilities/scenario.create-or-update.yaml`,
);
ns = await fullCreate(ns);
Expand Down Expand Up @@ -171,10 +172,11 @@ describe("mutate.ts", () => {
});

describe("mutate deletes", () => {
let ns, yay;
// eslint-disable-next-line @typescript-eslint/no-unused-vars
let ns, yay, oof;

beforeAll(async () => {
[ns, yay] = await trc.load(
[ns, yay, oof] = await trc.load(
`${trc.root()}/capabilities/scenario.delete.yaml`,
);
ns = await fullCreate(ns);
Expand Down

0 comments on commit 52acc83

Please sign in to comment.