microsoft/TypeAgent

Public

mirrored from https://github.com/microsoft/TypeAgentAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c6dc382c4a9a47c4468fbdb36634ea9d48cd49cf

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

ts/jest.config.js

12lines · modecode

1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4/** @type {import('ts-jest').JestConfigWithTsJest} */
5module.exports = {
6 testMatch: ["**/dist/test/**/*.(spec|test).js?(x)"],
7 testEnvironment: "node",
8 moduleNameMapper: {
9 "^../src/(.*)$": "<rootDir>/dist/$1",
10 },
11 testTimeout: 30000,
12};
13