Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Feb 27, 2025
1 parent 20d7484 commit b23359f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions e2e/driver.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ import { test, expect } from '@playwright/test';
import { TAXI_OWNER, execSQL, login } from './utils';
import { sql } from 'kysely';


const fromTime = new Date("2026-09-30T00:00:00.000Z").getTime();
const toTime = new Date("2026-09-30T23:59:59.000Z").getTime();
const fromTime = new Date('2026-09-30T00:00:00.000Z').getTime();
const toTime = new Date('2026-09-30T23:59:59.000Z').getTime();

test('Get tours', async ({ page }) => {
await login(page, TAXI_OWNER);
Expand Down

0 comments on commit b23359f

Please sign in to comment.