Skip to content

Commit

Permalink
chore(deps): update typescript-eslint monorepo to v8.18.2 (#61)
Browse files Browse the repository at this point in the history
* chore(deps): update typescript-eslint monorepo to v8.18.2

* allow a longer timeout for js acceptance tests

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: David Goss <david@davidgoss.co>
  • Loading branch information
renovate[bot] and davidjgoss authored Dec 29, 2024
1 parent 3dfdf57 commit 4603a09
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 49 deletions.
90 changes: 45 additions & 45 deletions javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.6",
"@types/node": "22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@typescript-eslint/eslint-plugin": "8.18.2",
"@typescript-eslint/parser": "8.18.2",
"chai": "^5.0.0",
"chai-almost": "^1.0.1",
"chai-xml": "^0.4.1",
Expand Down
6 changes: 4 additions & 2 deletions javascript/src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ import formatter from './index.js'
const asyncPipeline = util.promisify(pipeline)
use(chaiXml)

describe('Acceptance Tests', async () => {
describe('Acceptance Tests', async function() {
this.timeout(10_000)

const ndjsonFiles = globbySync(`*.ndjson`, {
cwd: new URL(path.join(path.dirname(import.meta.url), '../../testdata')),
absolute: true,
Expand Down Expand Up @@ -44,7 +46,7 @@ describe('Acceptance Tests', async () => {
emit(envelope)
callback()
},
})
}),
)

const expectedXml = fs.readFileSync(ndjsonFile.replace('.ndjson', '.xml'), {
Expand Down

0 comments on commit 4603a09

Please sign in to comment.