locust-cloud 1.12.4__py3-none-any.whl → 1.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,9 +0,0 @@
1
- import reactSwcPlugin from '@vitejs/plugin-react-swc';
2
- import { defineConfig, UserConfig } from 'vite';
3
- import tsconfigPaths from 'vite-tsconfig-paths';
4
-
5
- // https://vitejs.dev/config/
6
- export default defineConfig((config: UserConfig) => ({
7
- plugins: [reactSwcPlugin(), tsconfigPaths()],
8
- base: './',
9
- }));
@@ -1,16 +0,0 @@
1
- import { defineConfig, mergeConfig } from 'vitest/config';
2
-
3
- import viteConfig from './vite.config';
4
-
5
- export default defineConfig(configEnv =>
6
- mergeConfig(
7
- viteConfig(configEnv),
8
- defineConfig({
9
- test: {
10
- globals: true,
11
- environment: 'jsdom',
12
- setupFiles: './src/test/setup.ts',
13
- },
14
- }),
15
- ),
16
- );