mirror of
https://github.com/ChainSafe/lodestar.git
synced 2026-01-10 08:08:16 -05:00
**Motivation** Make our codebase compatible with Bun runtime **Description** - Configure Vitest to work along Bun - Add CI workflow to test Unit tests for Bun **Steps to test or reproduce** Run all tests
102 lines
2.8 KiB
TypeScript
102 lines
2.8 KiB
TypeScript
import path from "node:path";
|
|
import {ViteUserConfig, defineConfig} from "vitest/config";
|
|
import {browserTestProject} from "./configs/vitest.config.browser.js";
|
|
import {e2eMainnetProject, e2eMinimalProject} from "./configs/vitest.config.e2e.js";
|
|
import {specProjectMainnet, specProjectMinimal} from "./configs/vitest.config.spec.js";
|
|
import {typesTestProject} from "./configs/vitest.config.types.js";
|
|
import {unitTestMainnetProject, unitTestMinimalProject} from "./configs/vitest.config.unit.js";
|
|
|
|
const isBun = "bun" in process.versions;
|
|
|
|
export function getReporters(): ViteUserConfig["test"]["reporters"] {
|
|
if (isBun) return [["default", {summary: false}]];
|
|
if (process.env.GITHUB_ACTIONS) return ["verbose", "hanging-process", "github-actions"];
|
|
if (process.env.TEST_COMPACT_OUTPUT) return ["basic", "hanging-process"];
|
|
|
|
return ["verbose", "hanging-process"];
|
|
}
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
workspace: [
|
|
{
|
|
extends: true,
|
|
...unitTestMinimalProject,
|
|
},
|
|
{
|
|
extends: true,
|
|
...unitTestMainnetProject,
|
|
},
|
|
{
|
|
extends: true,
|
|
...browserTestProject,
|
|
},
|
|
{
|
|
extends: true,
|
|
...e2eMinimalProject,
|
|
},
|
|
{
|
|
extends: true,
|
|
...e2eMainnetProject,
|
|
},
|
|
{
|
|
extends: true,
|
|
...specProjectMinimal,
|
|
},
|
|
{
|
|
extends: true,
|
|
...specProjectMainnet,
|
|
},
|
|
{
|
|
extends: true,
|
|
...typesTestProject,
|
|
},
|
|
],
|
|
exclude: [
|
|
"**/spec-tests/**",
|
|
"**/spec-tests-bls/**",
|
|
"**/*.browser.test.ts",
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/cypress/**",
|
|
"**/.{idea,git,cache,output,temp}/**",
|
|
"**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*",
|
|
],
|
|
env: {
|
|
NODE_ENV: "test",
|
|
},
|
|
clearMocks: true,
|
|
// Some test files allocate a lot of data, which could cause more time for teardown
|
|
teardownTimeout: 5_000,
|
|
// We have a few spec tests suits (specially spec tests) which don't have individual tests
|
|
passWithNoTests: true,
|
|
reporters: getReporters(),
|
|
diff: process.env.TEST_COMPACT_DIFF
|
|
? path.join(import.meta.dirname, "../scripts/vitest/vitest.diff.ts")
|
|
: undefined,
|
|
onConsoleLog: () => !process.env.TEST_QUIET_CONSOLE,
|
|
coverage: {
|
|
enabled: false,
|
|
clean: true,
|
|
all: false,
|
|
extension: [".ts"],
|
|
provider: "v8",
|
|
reporter: [["lcovonly", {file: "lcov.info"}], ["text"]],
|
|
reportsDirectory: "./coverage",
|
|
exclude: [
|
|
"**/*.d.ts",
|
|
"**/*.js",
|
|
"**/lib/**",
|
|
"**/coverage/**",
|
|
"**/scripts/**",
|
|
"**/test/**",
|
|
"**/types/**",
|
|
"**/bin/**",
|
|
"**/node_modules/**",
|
|
"**/spec-tests/**",
|
|
"**/spec-tests-bls/**",
|
|
],
|
|
},
|
|
},
|
|
});
|