17 строки
374 B
TypeScript
17 строки
374 B
TypeScript
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
import { defineConfig, mergeConfig } from "vitest/config";
|
|
import viteConfig from "../../../vitest.shared.config.ts";
|
|
|
|
export default mergeConfig(
|
|
viteConfig,
|
|
defineConfig({
|
|
test: {
|
|
include: ["test/**/*.spec.ts"],
|
|
hookTimeout: 300000,
|
|
testTimeout: 300000,
|
|
},
|
|
}),
|
|
);
|