We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c370383 commit b36e846Copy full SHA for b36e846
javascript/src/index.spec.ts
@@ -14,7 +14,9 @@ import formatter from './index.js'
14
const asyncPipeline = util.promisify(pipeline)
15
use(chaiXml)
16
17
-describe('Acceptance Tests', async () => {
+describe('Acceptance Tests', async function() {
18
+ this.timeout(10_000)
19
+
20
const ndjsonFiles = globbySync(`*.ndjson`, {
21
cwd: new URL(path.join(path.dirname(import.meta.url), '../../testdata')),
22
absolute: true,
@@ -44,7 +46,7 @@ describe('Acceptance Tests', async () => {
44
46
emit(envelope)
45
47
callback()
48
},
- })
49
+ }),
50
)
51
52
const expectedXml = fs.readFileSync(ndjsonFile.replace('.ndjson', '.xml'), {
0 commit comments