UNPKG

441 BJavaScriptView Raw
1/*
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License.
4 */
5
6module.exports = {
7 preset: "ts-jest",
8 testEnvironment: "jsdom",
9 globals: {
10 crypto: require("crypto")
11 },
12 testEnvironmentOptions: {
13 url: "https://localhost:8081/index.html"
14 },
15 collectCoverageFrom: ["src/**/*.ts"],
16 coverageReporters: [["lcov", {"projectRoot": "../../"}]]
17};