Compare commits

..

2 Commits

Author SHA1 Message Date
gitea 5cecb98484 fix issue
2 weeks ago
gitea d4b7683147 update readme
2 weeks ago

@ -2,6 +2,26 @@
This template should help get you started developing with Svelte in Vite.
## Running the app
```bash
npm install
npm run dev
```
## Running tests
- **Watch mode** (re-runs on file changes):
`npm run test`
- **Single run** (CI-friendly):
`npm run test:run`
- **Coverage report**:
`npm run test:coverage`
Tests use Vitest and `@testing-library/svelte`. Place test files next to the code they cover (e.g. `Component.test.js` beside `Component.svelte`) or in a `__tests__` directory.
## Recommended IDE Setup
[VS Code](https://code.visualstudio.com/) + [Svelte](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode).

@ -1,9 +1,13 @@
import { mount } from 'svelte'
import './app.css'
import App from './App.svelte'
const app = mount(App, {
target: document.getElementById('app'),
})
// Only load and mount the app in a real browser (document + mount available).
// Avoids "mount() is not available on the server" when the bundle runs in SSR/workers.
let app = null
const target = typeof document !== 'undefined' && document.getElementById('app')
if (target) {
const { mount } = await import('svelte')
const { default: App } = await import('./App.svelte')
app = mount(App, { target })
}
export default app

@ -5,8 +5,8 @@ import { svelte } from '@sveltejs/vite-plugin-svelte'
export default defineConfig(({ mode }) => ({
plugins: [svelte()],
resolve: {
// Use browser Svelte build in tests so mount() is available (avoid "lifecycle_function_unavailable")
conditions: mode === 'test' ? ['browser'] : [],
// Prefer browser Svelte build so mount() is available (avoid "lifecycle_function_unavailable" on server/workers)
conditions: ['browser'],
},
test: {
include: ['src/**/*.{test,spec}.{js,ts}'],

Loading…
Cancel
Save

Powered by TurnKey Linux.