mirror of
https://github.com/mapillary/mapillary-js.git
synced 2026-01-18 13:56:53 +00:00
23 lines
613 B
JavaScript
23 lines
613 B
JavaScript
export default {
|
|
collectCoverage: true,
|
|
collectCoverageFrom: ["<rootDir>/src/**/*"],
|
|
coveragePathIgnorePatterns: [
|
|
"<rootDir>/src/api/contracts/",
|
|
"<rootDir>/src/api/ents/",
|
|
"<rootDir>/src/export/",
|
|
"<rootDir>/src/component/shaders/",
|
|
"<rootDir>/src/mapillary.js",
|
|
"<rootDir>/src/viewer/events/",
|
|
"<rootDir>/src/viewer/options/",
|
|
"interfaces",
|
|
],
|
|
coverageProvider: "v8",
|
|
moduleDirectories: ["node_modules"],
|
|
moduleFileExtensions: ["js"],
|
|
rootDir: "build/cjs",
|
|
slowTestThreshold: 1,
|
|
testEnvironment: "jsdom",
|
|
testRunner: "jest-jasmine2",
|
|
watchman: false,
|
|
};
|