Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
levivilet committed Dec 27, 2024
1 parent 5278432 commit 48a7f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/preview-process/test/WaitForServerToBeReady.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expect, test } from '@jest/globals'
import { EventEmitter } from 'node:events'
import * as WaitForServerToBeReady from '../src/parts/WaitForServerToBeReady/WaitForServerToBeReady.ts'
import type { WebViewServer } from '../src/parts/WebViewServerTypes/WebViewServerTypes.ts'
import * as WaitForServerToBeReady from '../src/parts/WaitForServerToBeReady/WaitForServerToBeReady.ts'

class MockServer extends EventEmitter implements WebViewServer {
handler = undefined
Expand All @@ -18,7 +18,7 @@ class MockServer extends EventEmitter implements WebViewServer {
callback()
})
}
isListening() {
isListening(): boolean {
return this.listening
}
}
Expand Down

0 comments on commit 48a7f85

Please sign in to comment.