globals
- Type:
boolean - Default:
false - CLI:
--globals
Provide global Rstest APIs for test files, such as expect, test, describe, etc.
By default, Rstest does not provide global APIs. If you prefer to use the APIs globally like Jest, you can add globals: true in the config or pass the --globals option to CLI.
Usage
When you enable globals, you can use the global APIs directly without import { ... } from '@rstest/core'.
index.test.ts
TypeScript support
To enable TypeScript to properly recognize the global APIs, add the @rstest/core/globals type declaration in your tsconfig.json:
tsconfig.json
Alternatively, create a src/rstestEnv.d.ts file to reference the type definitions:
rstestEnv.d.ts