File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- export * from './client/ts'
1+ export * from './client/ts/index.js '
22export const API_VERSION = 'v1.0'
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ import { exec } from 'child_process'
88import { exit } from 'process'
99import { join } from 'path'
1010import { createServer } from 'http'
11+ // eslint-disable-next-line n/no-missing-import
1112import { expressAppConfig } from './server/node_modules/oas3-tools/dist/index.js'
1213
1314const testTimeout = 120000
Original file line number Diff line number Diff line change @@ -13,10 +13,9 @@ export async function checkServer(config: Configuration): Promise<void> {
1313 try {
1414 await sofieApi . index ( ) // Throws an error if API is not available
1515 return
16- } catch (
17- err
18- // eslint-disable-next-line no-empty
19- ) { }
16+ } catch ( _err ) {
17+ // Ignore
18+ }
2019 await wait ( 1000 )
2120 }
2221
You can’t perform that action at this time.
0 commit comments