Skip to content

Commit 4603a09

Browse files
chore(deps): update typescript-eslint monorepo to v8.18.2 (#61)
* 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 <[email protected]>
1 parent 3dfdf57 commit 4603a09

File tree

3 files changed

+51
-49
lines changed

3 files changed

+51
-49
lines changed

javascript/package-lock.json

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"@types/luxon": "^3.4.2",
4040
"@types/mocha": "^10.0.6",
4141
"@types/node": "22.10.2",
42-
"@typescript-eslint/eslint-plugin": "8.18.0",
43-
"@typescript-eslint/parser": "8.18.0",
42+
"@typescript-eslint/eslint-plugin": "8.18.2",
43+
"@typescript-eslint/parser": "8.18.2",
4444
"chai": "^5.0.0",
4545
"chai-almost": "^1.0.1",
4646
"chai-xml": "^0.4.1",

javascript/src/index.spec.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ import formatter from './index.js'
1414
const asyncPipeline = util.promisify(pipeline)
1515
use(chaiXml)
1616

17-
describe('Acceptance Tests', async () => {
17+
describe('Acceptance Tests', async function() {
18+
this.timeout(10_000)
19+
1820
const ndjsonFiles = globbySync(`*.ndjson`, {
1921
cwd: new URL(path.join(path.dirname(import.meta.url), '../../testdata')),
2022
absolute: true,
@@ -44,7 +46,7 @@ describe('Acceptance Tests', async () => {
4446
emit(envelope)
4547
callback()
4648
},
47-
})
49+
}),
4850
)
4951

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

0 commit comments

Comments
 (0)