-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
// 'use strict'; | ||
'use strict'; | ||
|
||
// const path = require('path'); | ||
// const findlinks = require('findlinks'); | ||
// const assert = require('assert'); | ||
// const runscript = require('runscript'); | ||
// const utils = require('./utils'); | ||
// const puppeteer = require('puppeteer'); | ||
const path = require('path'); | ||
const findlinks = require('findlinks'); | ||
const assert = require('assert'); | ||
const runscript = require('runscript'); | ||
const utils = require('./utils'); | ||
const puppeteer = require('puppeteer'); | ||
|
||
// describe('test/doc.test.js', () => { | ||
// /** | ||
// * This unit test is ONLY working for the latest nodejs version (v18.0.0) | ||
// * or higher version, bcoz on windows, it takes quite a lot of time | ||
// * to generate the whole doc. We only need some of the test cases to check | ||
// * whether the links inside the doc gets fine or not. | ||
// */ | ||
// it('should have no broken urls (based on non-windows platform and node\'s version >=18)', async function() { | ||
describe('test/doc.test.js', () => { | ||
/** | ||
* This unit test is ONLY working for the latest nodejs version (v18.0.0) | ||
* or higher version, bcoz on windows, it takes quite a lot of time | ||
* to generate the whole doc. We only need some of the test cases to check | ||
* whether the links inside the doc gets fine or not. | ||
*/ | ||
it('should have no broken urls (based on non-windows platform and node\'s version >=18)', async function() { | ||
|
||
// const mainNodejsVersion = parseInt(process.versions.node.split('.')[0]); | ||
const mainNodejsVersion = parseInt(process.versions.node.split('.')[0]); | ||
|
||
// if (process.platform === 'linux' && mainNodejsVersion >= 18) { | ||
// const cwd = path.dirname(__dirname); | ||
// const dumi = path.join(cwd, 'node_modules', '.bin', 'dumi'); | ||
// await runscript(`cross-env NODE_OPTIONS=--openssl-legacy-provider APP_ROOT=./site ${dumi} build`, | ||
// { | ||
// cwd, | ||
// }); | ||
// const app = utils.cluster({ | ||
// baseDir: 'apps/docapp', | ||
// }); | ||
// app.coverage(false); | ||
// await app.ready(); | ||
// const result = await findlinks({ src: app.url, logger: console, puppeteer }); | ||
// if (result.fail !== 0) console.log(result); | ||
// assert(result.fail === 0); | ||
// app.close(); | ||
// } else { | ||
// this.skip(); | ||
// } | ||
// }).timeout(10 * 60 * 1000); | ||
// }); | ||
if (process.platform === 'linux' && mainNodejsVersion >= 18) { | ||
const cwd = path.dirname(__dirname); | ||
const dumi = path.join(cwd, 'node_modules', '.bin', 'dumi'); | ||
await runscript(`cross-env NODE_OPTIONS=--openssl-legacy-provider APP_ROOT=./site ${dumi} build`, | ||
{ | ||
cwd, | ||
}); | ||
const app = utils.cluster({ | ||
baseDir: 'apps/docapp', | ||
}); | ||
app.coverage(false); | ||
await app.ready(); | ||
const result = await findlinks({ src: app.url, logger: console, puppeteer }); | ||
if (result.fail !== 0) console.log(result); | ||
assert(result.fail === 0); | ||
app.close(); | ||
} else { | ||
this.skip(); | ||
} | ||
}).timeout(10 * 60 * 1000); | ||
}); |