Skip to content

Commit

Permalink
chore: some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Dec 1, 2024
1 parent ed16a1c commit 193272e
Show file tree
Hide file tree
Showing 2 changed files with 138 additions and 46 deletions.
135 changes: 118 additions & 17 deletions docs/advanced/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ outline: [2, 3]

# Node API

::: warning
Vitest exposes experimental private API. Breaking changes might not follow SemVer, please pin Vitest's version when using it.
:::

## startVitest

You can start running Vitest tests using its Node API:
Expand Down Expand Up @@ -98,7 +94,56 @@ Benchmark mode calls `bench` functions and throws an error, when it encounters `
You can start running tests or benchmarks with `start` method. You can pass an array of strings to filter test files.
### `provide`
### config
The root (or global) config. If workspace feature is enabled, projects will reference this as `globalConfig`.
::: warning
This is Vitest config, it doesn't extend _Vite_ config. It only has resolved values from the `test` property.
:::
### vite
This is a global [`ViteDevServer`](https://vite.dev/guide/api-javascript#vitedevserver).
### state
::: warning
Public state is an experimental state. Breaking changes might not follow SemVer, please pin Vitest's version when using it.
:::
Global state stores information about the current tests. It uses the same API from `@vitest/runner` by default, but we recommend using the [Reported API](/advanced/reporters#reported-tasks) instead by calling `state.getReportedEntity()` on the `@vitest/runner` API:
```ts
const task = vitest.state.idMap.get(taskId) // old API
const testCase = vitest.state.getReportedEntity(task) // new API
```
In the future, the old API won't be exposed anymore.
### snapshot
The global snapshot manager. Vitest keeps track of all snapshots using the `snapshot.add` method.
You can get the latest summary of snapshots via the `vitest.snapshot.summay` property.
### cache
Cache manager that stores information about latest test results and test file stats. In Vitest itself this is only used by the default sequencer to sort tests.
### ready
Vitest needs to be resolved with the Vite server to be properly initialized. If the `Vitest` instance was created manually, you might need to check the `ready` status before accessing the `vite`, `state`, `cache`, `config`, and `snapshot` properties; otherwise, they will throw an error in the getter.
In normal circumstances, you would never call this method because `createVitest` and `startVitest` return already resolved Vitest instance.
### getRootTestProject
This returns the root test project. The root project generally doesn't run any tests and is not included in `vitest.projects` unless the user explicitly includes the root config in their workspace.
The primary goal of the root project is to setup the global config. In fact, `rootProject.config` references `rootProject.globalConfig` and `vitest.config` directly.
### provide
Vitest exposes `provide` method which is a shorthand for `vitest.getRootTestProject().provide`. With this method you can pass down values from the main thread to tests. All values are checked with `structuredClone` before they are stored, but the values themselves are not cloned.
Expand Down Expand Up @@ -130,16 +175,62 @@ declare module 'vitest' {
Technically, `provide` is a method of [`TestProject`](#testproject), so it is limited to the specific project. However, all projects inherit the values from the core project which makes `vitest.provide` universal way of passing down values to tests.
:::
::: tip
This method is also available to [global setup files](/config/#globalsetup) for cases where you cannot use the public API:
### getProvidedContext
```js
export default function setup({ provide }) {
provide('wsPort', 3000)
}
This returns the root context object. This is a shorthand for `vitest.getRootTestProject().getProvidedContext`.
### getProjectByName
This method returns the project by its name. Simillar to calling `vitest.projects.find`.
::: warning
In case the project doesn't exist, this method will return the root project - make sure to check the names again if you need to make sure the project you are looking for is the one returned.
:::
### globTestSpecifications
This method constructs new [test specifications](#testspecification) by collecting every test in all projects with [`project.globTestFiles`](#globtestfiles). It accepts string filters to match the test files.
::: warning
As of Vitest 2.2.0, it's possible to have multiple test specifications with the same module ID (file path) if `poolMatchGlob` has several pools or if `typecheck` is enabled.
:::
```ts
const specifications = await vitest.globTestSpecifications(['my-filter'])
// [TestSpecification{ moduleId: '/tests/my-filter.test.ts', pool: 'forks' }]
console.log(specifications)
```
### mergeReports
### collect
### listFiles
### start
### init
### getModuleSpecifications
Returns a list of test specifications related to the module ID. The ID should already be resolved to an absolute file path. If ID doesn't match `include` or `includeSource` patterns, the returned array will be empty.
::: warning
As of Vitest 2.2.0, this method uses a cache to check if the file is a test. To make sure that the cache is not empty, call `globTestSpecifications` at least once.
:::
### runTestSpecifications
### rerunTestSpecifications
### collectTests
### cancelCurrentRun
### updateSnapshot
### invalidateFile
### close
### exit
### shouldKeepServer
### onServerRestart
### onCancel
### onClose
### onTestsRerun
### onFilterWatchedSpecification
## TestProject <Version>2.2.0</Version> {#testproject}
- **Alias**: `WorkspaceProject` before 2.2.0
Expand Down Expand Up @@ -210,7 +301,7 @@ This is the project's resolved test config.
### vite
This is project's `ViteDevServer`. All projects have their own Vite servers.
This is project's [`ViteDevServer`](https://vite.dev/guide/api-javascript#vitedevserver). All projects have their own Vite servers.
### browser
Expand Down Expand Up @@ -241,6 +332,16 @@ const value = inject('key')
The values can be provided dynamicaly. Provided value in tests will be updated on their next run.
::: tip
This method is also available to [global setup files](/config/#globalsetup) for cases where you cannot use the public API:
```js
export default function setup({ provide }) {
provide('wsPort', 3000)
}
```
:::
### getProvidedContext
This returns the context object. Every project also inherits the global context set by `vitest.provide`.
Expand Down Expand Up @@ -284,11 +385,7 @@ await vitest.runFiles([specification], true)
### isRootProject
Checks if the current project is the root project. You can also get the root project by calling `vitest.getRootTestProject()`.
The root project generally doesn't run any tests and is not included in `vitest.projects` unless the user explicitly includes the root config in their workspace.
The primary goal of the root project is to setup the global config. In fact, `rootProject.config` references `rootProject.globalConfig` and `vitest.config` directly.
Checks if the current project is the root project. You can also get the root project by calling [`vitest.getRootTestProject()`](#getroottestproject).
### globTestFiles
Expand Down Expand Up @@ -354,3 +451,7 @@ project.onTestsRerun((specs) => {
Closes the project and all associated resources. This can only be called once; the closing promise is cached until the server restarts. If the resources are needed again, create a new project.
In detail, this method closes the Vite server, stops the typechecker service, closes the browser if it's running, deletes the temporary directory that holds the source code, and resets the provided context.
## TestSpecification
<!-- TODO -->
49 changes: 20 additions & 29 deletions packages/vitest/src/node/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@ export class Vitest {
/** @internal */ vitenode: ViteNodeServer = undefined!
/** @internal */ runner: ViteNodeRunner = undefined!

// TODO: remove in 3.0
private watchedTests: Set<string> = new Set()

private isFirstRun = true
private restartsCount = 0

Expand Down Expand Up @@ -177,7 +174,7 @@ export class Vitest {
}

/**
* Test results and test file stats cache. Primarily used by the sequencer to order tests.
* Test results and test file stats cache. Primarily used by the sequencer to sort tests.
*/
get cache(): VitestCache {
assert(this._cache, 'cache')
Expand Down Expand Up @@ -315,7 +312,7 @@ export class Vitest {
}

/** @internal */
_ensureRootProject() {
_ensureRootProject(): TestProject {
if (this.coreWorkspaceProject) {
return this.coreWorkspaceProject
}
Expand Down Expand Up @@ -626,6 +623,24 @@ export class Vitest {
return this.runFiles(specifications, allTestsRun)
}

/**
* Rerun files and trigger `onWatcherRerun`, `onWatcherStart` and `onTestsRerun` events.
* @param specifications A list of specifications to run.
* @param allTestsRun Indicates whether all tests were run. This only matters for coverage.
*/
public async rerunTestSpecifications(specifications: TestSpecification[], allTestsRun = false): Promise<TestRunResult> {
this.configOverride.testNamePattern = undefined
const files = specifications.map(spec => spec.moduleId)
await Promise.all([
this.report('onWatcherRerun', files, 'rerun test'),
...this._onUserTestsRerun.map(fn => fn(specifications)),
])
const result = await this.runTestSpecifications(specifications, allTestsRun)

await this.report('onWatcherStart', this.state.getFiles(files))
return result
}

private async runFiles(specs: TestSpecification[], allTestsRun: boolean): Promise<TestRunResult> {
const filepaths = specs.map(spec => spec.moduleId)
this.state.collectPaths(filepaths)
Expand Down Expand Up @@ -781,24 +796,6 @@ export class Vitest {
}
}

/**
* Rerun files and trigger `onWatcherRerun`, `onWatcherStart` and `onTestsRerun` events.
* @param specifications A list of specifications to run.
* @param allTestsRun Indicates whether all tests were run. This only matters for coverage.
*/
public async rerunTestSpecifications(specifications: TestSpecification[], allTestsRun = false): Promise<TestRunResult> {
this.configOverride.testNamePattern = undefined
const files = specifications.map(spec => spec.moduleId)
await Promise.all([
this.report('onWatcherRerun', files, 'rerun test'),
...this._onUserTestsRerun.map(fn => fn(specifications)),
])
const result = await this.runTestSpecifications(specifications, allTestsRun)

await this.report('onWatcherStart', this.state.getFiles(files))
return result
}

/** @internal */
async rerunFiles(files: string[] = this.state.getFilepaths(), trigger?: string, allTestsRun = true, resetTestNamePattern = false): Promise<void> {
if (resetTestNamePattern) {
Expand Down Expand Up @@ -969,12 +966,6 @@ export class Vitest {
}, WATCHER_DEBOUNCE)
}

/**
* Watch only the specified tests. If no tests are provided, all tests will be watched.
* @deprecated This method does nothing. It will be remove in Vitest 3.0.
*/
public watchTests(_tests: string[]): void {}

/**
* Invalidate a file in all projects.
*/
Expand Down

0 comments on commit 193272e

Please sign in to comment.