Skip to content

Commit

Permalink
whoops lint fix, js edition
Browse files Browse the repository at this point in the history
  • Loading branch information
jbleon95 committed Nov 19, 2024
1 parent 2f2f107 commit a21bc29
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions shared-data/js/__tests__/liquidClassSchema.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ import glob from 'glob'
import { describe, expect, it } from 'vitest'
import liquidClassSchemaV1 from '../../liquid-class/schemas/1.json'

Check failure on line 7 in shared-data/js/__tests__/liquidClassSchema.test.ts

View workflow job for this annotation

GitHub Actions / js checks

File '/home/runner/work/opentrons/opentrons/shared-data/liquid-class/schemas/1.json' is not listed within the file list of project '/home/runner/work/opentrons/opentrons/shared-data/tsconfig.json'. Projects must list all files or use an 'include' pattern.

Check failure on line 7 in shared-data/js/__tests__/liquidClassSchema.test.ts

View workflow job for this annotation

GitHub Actions / js checks

File '/home/runner/work/opentrons/opentrons/shared-data/liquid-class/schemas/1.json' is not listed within the file list of project '/home/runner/work/opentrons/opentrons/shared-data/tsconfig.json'. Projects must list all files or use an 'include' pattern.

const fixtureV1Glob = path.join(__dirname, '../../liquid-class/fixtures/1/*.json')
const defV1Glob = path.join(__dirname, '../../liquid-class/definitions/3/*.json')
const fixtureV1Glob = path.join(
__dirname,
'../../liquid-class/fixtures/1/*.json'
)
const defV1Glob = path.join(
__dirname,
'../../liquid-class/definitions/3/*.json'
)

const ajv = new Ajv({ allErrors: true, jsonPointers: true })

Expand Down

0 comments on commit a21bc29

Please sign in to comment.