Skip to content

Commit

Permalink
fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
newracket committed Oct 22, 2024
1 parent dce387e commit 771e49d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion migrations/0046-add-food-column.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { MigrationInterface, QueryRunner, TableColumn } from 'typeorm';
const TABLE_NAME = 'Events';

export class AddFoodColumn1728959627663 implements MigrationInterface {

public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.addColumns(TABLE_NAME, [
new TableColumn({
Expand Down
2 changes: 0 additions & 2 deletions tests/merchOrder.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -995,8 +995,6 @@ describe('merch order pickup events', () => {
const persistedPickupEvent = await conn.manager.findOne(OrderPickupEventModel,
{ relations: ['orders', 'linkedEvent'] });

console.log(persistedPickupEvent);
console.log(pickupEvent);
expect(persistedPickupEvent).toStrictEqual(pickupEvent);

// edit a linked event
Expand Down

0 comments on commit 771e49d

Please sign in to comment.