naporin0624 / vitest-react-native

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vitest-react-native

Warning This package is still WIP. If you encounter any errors, feel free to open an issue or a pull request.

Installing

To add support for react-native to Vitest, you need to install this plugin and add it to your Vitest configuration file.

# with npm
npm install vitest-react-native -D

# with yarn
yarn add vitest-react-native -D

# with pnpm
pnpm add vitest-react-native -D

Usage

// vitest.config.mjs
import reactNative from "vitest-react-native";
// this is needed for react jsx support
import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";

export default defineConfig({
  plugins: [reactNative(), react()],
});

Instead of using a plugin, you can also add a "setup" file yourself:

// vitest.config.mjs
import react from "@vitejs/plugin-react";
import { defineConfig } from "vitest/config";

export default defineConfig({
  plugins: [react()],
  resolve: {
    // plugin adds this condition automatically
    conditions: ["react-native"],
  },
  test: {
    setupFiles: ["vitest-react-native/setup"],
    // this is required for this plugin to work
    globals: true,
  },
});

About


Languages

Language:JavaScript 100.0%