Skip to content

Commit

Permalink
fix settings
Browse files Browse the repository at this point in the history
  • Loading branch information
kolodny committed Feb 16, 2024
1 parent 35d040f commit 2e76cfa
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
27 changes: 27 additions & 0 deletions examples/vite-solid-ts/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
artifacts/
artifacts.json
results.json
9 changes: 6 additions & 3 deletions examples/vite-solid-ts/setup-safetest.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import "@testing-library/jest-dom";
import { setup } from "safetest/setup";
import '@testing-library/jest-dom';
import { setup } from 'safetest/setup';

setup({
bootstrappedAt: require.resolve("./src/index.tsx"),
bootstrappedAt: require.resolve('./src/index.tsx'),
ciOptions: {
usingArtifactsDir: 'artifacts',
},
});

0 comments on commit 2e76cfa

Please sign in to comment.