nodemw
Version:
MediaWiki API and WikiData client written in Node.js
20 lines (19 loc) • 413 B
JavaScript
;
// @ts-check
/** @type {import('jest').Config} */
module.exports = {
verbose: true,
testEnvironment: "node",
testRegex: "(test).*-test.js$",
reporters: [
"default",
"github-actions" /* https://jestjs.io/blog/2022/04/25/jest-28#github-actions-reporter */,
],
collectCoverage: true,
coverageThreshold: {
global: {
lines: 23,
},
},
testTimeout: 5000, // [ms]
};