Skip to content

Commit b3d91f8

Browse files
authored
Merge pull request #782 from Lemoncode/feature/update-cloud
Feature/update cloud
2 parents 2341044 + f563861 commit b3d91f8

224 files changed

Lines changed: 28213 additions & 14964 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="vitest/globals" />
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { defineConfig } from 'vitest/config';
2+
import { fileURLToPath } from 'node:url';
3+
4+
export default defineConfig({
5+
test: {
6+
globals: true,
7+
restoreMocks: true,
8+
environment: 'jsdom',
9+
setupFiles: ['./config/test/setup.ts'],
10+
alias: {
11+
'@': fileURLToPath(new URL('../../src', import.meta.url)),
12+
},
13+
},
14+
});

07-cloud/01-basic/00-boilerplate/config/test/jest.js

Lines changed: 0 additions & 15 deletions
This file was deleted.

07-cloud/01-basic/00-boilerplate/config/test/setup-after.ts

Lines changed: 0 additions & 2 deletions
This file was deleted.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '@testing-library/jest-dom/vitest';

0 commit comments

Comments
 (0)