Skip to content

Commit 844e39b

Browse files
committed
CI
1 parent 2ff8703 commit 844e39b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/caching.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,12 @@ import path from 'path'
77
/* tests need to run with a maxConcurrency of 1 as `jsdoc.cache` is shared between tests */
88
const [test, only, skip] = [new Map(), new Map(), new Map()]
99

10-
only.set('.explain({ files, cache: true })', async function () {
10+
test.set('.explain({ files, cache: true })', async function () {
1111
const f = new Fixture('class-all')
1212
jsdoc.cache.dir = 'tmp/test/cache1'
1313
await jsdoc.cache.clear()
1414
let output = await jsdoc.explain({ files: f.sourcePath, cache: true })
15-
// console.log('======BEFORE')
16-
// console.log(output)
1715
output = Fixture.normaliseNewLines(output)
18-
// console.log('======AFTER')
19-
// console.log(output)
2016
const cachedFiles = readdirSync(jsdoc.cache.dir).map(file => path.resolve(jsdoc.cache.dir, file))
2117
a.equal(cachedFiles.length, 1)
2218
a.deepEqual(output, f.getExpectedOutput(output))

0 commit comments

Comments
 (0)