feat: initial commit introducing NonEmptyString schema
This commit is contained in:
34
vitest.config.js
Normal file
34
vitest.config.js
Normal file
@@ -0,0 +1,34 @@
|
||||
import { playwright } from "@vitest/browser-playwright";
|
||||
|
||||
/** @satisfies {import("vitest/config").ViteUserConfig} */
|
||||
const completeJsVitestConfig = {
|
||||
test: {
|
||||
projects: [
|
||||
{
|
||||
extends: true,
|
||||
test: {
|
||||
browser: {
|
||||
enabled: true,
|
||||
headless: true,
|
||||
instances: [
|
||||
{ browser: "chromium", name: "chromium" },
|
||||
{ browser: "firefox", name: "firefox" },
|
||||
],
|
||||
provider: playwright(),
|
||||
screenshotFailures: false,
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
extends: true,
|
||||
test: {
|
||||
environment: "node",
|
||||
name: "node",
|
||||
},
|
||||
},
|
||||
],
|
||||
reporters: ["tree"],
|
||||
},
|
||||
};
|
||||
|
||||
export default completeJsVitestConfig;
|
||||
Reference in New Issue
Block a user