diff options
author | HiDeoo | 2023-10-02 15:23:46 +0200 |
---|---|---|
committer | GitHub | 2023-10-02 15:23:46 +0200 |
commit | acd2aa15ec5ca0b7e15cb86e12c9d421a41b6cc6 (patch) | |
tree | e05b028808306f9983090ca16b69154032302ea4 | |
parent | 957d2c32123ab0c223fcef03f91ce3ad7be7aa21 (diff) | |
download | IT.starlight-acd2aa15ec5ca0b7e15cb86e12c9d421a41b6cc6.tar.gz IT.starlight-acd2aa15ec5ca0b7e15cb86e12c9d421a41b6cc6.tar.bz2 IT.starlight-acd2aa15ec5ca0b7e15cb86e12c9d421a41b6cc6.zip |
Fix invalid path in `CONTRIBUTING.md` (#787)
-rw-r--r-- | CONTRIBUTING.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fac88553..941e4e8d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -125,7 +125,7 @@ This will run tests and then listen for changes, re-running tests when files cha A lot of Starlight code relies on Vite virtual modules provided either by Astro or by Starlight itself. Each subdirectory of `packages/starlight/__tests__/` should contain a `vitest.config.ts` file that uses the `defineVitestConfig()` helper to define a valid test environment for tests in that directory. This helper takes a single argument, which provides a Starlight user config object: ```ts -// packages/starlight/__tests/basics/vitest.config.ts +// packages/starlight/__tests__/basics/vitest.config.ts import { defineVitestConfig } from '../test-config'; export default defineVitestConfig({ |