Skip to content

Commit 8c7e781

Browse files
authored
Merge branch 'next' into fix/typedoc-test-issues
2 parents 252acab + 87eca26 commit 8c7e781

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+151
-176
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ module.exports = defineConfig({
114114
},
115115
},
116116
{
117-
files: ['test/*.spec.ts'],
117+
files: ['test/**/*.spec.ts'],
118118
extends: ['plugin:vitest/recommended'],
119119
rules: {
120120
'deprecation/deprecation': 'off',

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,12 @@
9292
"@types/markdown-it": "~12.2.3",
9393
"@types/node": "~20.4.1",
9494
"@types/prettier": "~2.7.3",
95-
"@types/react": "~18.2.15",
95+
"@types/react": "~18.2.17",
9696
"@types/sanitize-html": "~2.9.0",
9797
"@types/semver": "~7.5.0",
9898
"@types/validator": "~13.7.17",
99-
"@typescript-eslint/eslint-plugin": "~6.1.0",
100-
"@typescript-eslint/parser": "~6.1.0",
99+
"@typescript-eslint/eslint-plugin": "~6.2.0",
100+
"@typescript-eslint/parser": "~6.2.0",
101101
"@vitest/coverage-v8": "~0.33.0",
102102
"@vitest/ui": "~0.33.0",
103103
"@vueuse/core": "~10.2.1",
@@ -128,7 +128,7 @@
128128
"typescript": "~4.9.5",
129129
"validator": "~13.9.0",
130130
"vite": "~4.4.2",
131-
"vitepress": "1.0.0-beta.6",
131+
"vitepress": "1.0.0-beta.7",
132132
"vitest": "~0.33.0",
133133
"vue": "~3.3.4"
134134
},

pnpm-lock.yaml

Lines changed: 60 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/__snapshots__/unique.spec.ts.snap

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

test/airline.spec.ts renamed to test/modules/airline.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'vitest';
2-
import { Aircraft, faker } from '../src';
3-
import { seededTests } from './support/seededRuns';
4-
import { times } from './support/times';
2+
import { Aircraft, faker } from '../../src';
3+
import { seededTests } from './../support/seededRuns';
4+
import { times } from './../support/times';
55

66
const NON_SEEDED_BASED_RUN = 5;
77

test/animal.spec.ts renamed to test/modules/animal.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { describe, expect, it } from 'vitest';
2-
import { faker } from '../src';
3-
import { seededTests } from './support/seededRuns';
4-
import { times } from './support/times';
2+
import { faker } from '../../src';
3+
import { seededTests } from './../support/seededRuns';
4+
import { times } from './../support/times';
55

66
const NON_SEEDED_BASED_RUN = 5;
77

0 commit comments

Comments
 (0)