Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
daonb committed Jan 28, 2024
1 parent 9cc6f34 commit 3455e1c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion aatp/common/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export async function getLines(page, start = -1, end = -1): Array<string> {
return ret
}, { start, end })
}
export async function waitForTWROutput(page, expected: string | RegExp , timeout: number = 1000) {
export async function waitForTWROutput(page, expected: string | RegExp , timeout = 1000) {
const start = Date.now()
let compare = (a, b) => a === b
if (expected instanceof RegExp) {
Expand Down
1 change: 0 additions & 1 deletion aatp/ui/ui.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { test, expect, Page, BrowserContext } from '@playwright/test'
import { Client } from 'ssh2'
import * as fs from 'fs'
import waitPort from 'wait-port'

Expand Down

0 comments on commit 3455e1c

Please sign in to comment.