Skip to content

Commit

Permalink
resolve lint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBenediktBusch committed Jul 12, 2024
1 parent b0b47ab commit 53beac6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/services/funding-mechanism.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ import { Client } from 'pg';
describe('service: funding-mechanism', () => {
let dbPool: NodePgDatabase<typeof db>;
let dbConnection: Client;
let cycle: db.Cycle | undefined;
let option: db.Option;
let question: db.Question;

beforeAll(async () => {
Expand All @@ -34,9 +32,7 @@ describe('service: funding-mechanism', () => {

dbPool = initDb.db;
dbConnection = initDb.client;
const { cycles, questionOptions, forumQuestions } = await seed(dbPool);
cycle = cycles[0];
option = questionOptions[0]!;
const { forumQuestions } = await seed(dbPool);
question = forumQuestions[0]!;
});

Expand Down

0 comments on commit 53beac6

Please sign in to comment.