15 строки
344 B
TypeScript
15 строки
344 B
TypeScript
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
import { defineConfig, mergeConfig } from "vitest/config";
|
|
import viteConfig from "../../../vitest.browser.base.config.ts";
|
|
|
|
export default mergeConfig(
|
|
viteConfig,
|
|
defineConfig({
|
|
test: {
|
|
include: ["dist-test/browser/test/**/*.spec.js"],
|
|
},
|
|
}),
|
|
);
|