Skip to content

Commit

Permalink
test: remove global apis
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackGlory committed May 4, 2024
1 parent 6f65227 commit b05f751
Show file tree
Hide file tree
Showing 28 changed files with 95 additions and 61 deletions.
1 change: 1 addition & 0 deletions __tests__/utils/clean-all-html-attributes.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { cleanAllHTMLAttributes } from '@utils/clean-all-html-attributes.js'

test('cleanAllHTMLAttributes', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/clean-html.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { cleanHTML } from '@utils/clean-html.js'
import { dedent } from 'extra-tags'

Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/concat-plain-text.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { concatPlainText } from '@utils/concat-plain-text.js'

describe('concatPlainText', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-html-to-bbcode.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { convertHTMLToBBCode } from '@utils/convert-html-to-bbcode.js'

describe('convertHTMLToBBCode', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-html-to-markdown.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { convertHTMLToMarkdown } from '@utils/convert-html-to-markdown.js'
import { MarkdownBullet, MarkdownBulletOrdered, MarkdownEmphasis, MarkdownFence, MarkdownListItemIndent, MarkdownThematicBreak, MarkdownStrong } from '@src/contract.js'

Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-html-to-plain-text.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { convertHTMLToPlainText } from '@utils/convert-html-to-plain-text.js'

test('convertHTMLToPlainText', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-url-to-absolute-url.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { convertURLToAbsoluteURL } from '@utils/convert-url-to-absolute-url.js'

describe('convertURLToAbsoluteURL', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-url-to-relative-url.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { convertURLToRelativeURL } from '@utils/convert-url-to-relative-url.js'

describe('convertURLToRelativeURL', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/convert-url-to-root-relative-url.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { convertURLToRootRelativeURL } from '@utils/convert-url-to-root-relative-url.js'

describe('convertURLToRootRelativeURL', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-ascii-doc-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createAsciiDocLink } from '@utils/create-ascii-doc-link.js'

describe('createAsciiDocLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-bbcode-image.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { createBBCodeImage } from '@utils/create-bbcode-image.js'

test('createBBCodeImage', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-bbcode-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createBBCodeLink } from '@utils/create-bbcode-link.js'

describe('createBBCodeLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-html-audio.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { createHTMLAudio } from '@utils/create-html-audio.js'

test('createHTMLAudio', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-html-image.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { createHTMLImage } from '@utils/create-html-image.js'

test('createHTMLImage', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-html-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createHTMLLink } from '@utils/create-html-link.js'

describe('createHTMLLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-html-video.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { createHTMLVideo } from '@utils/create-html-video.js'

test('createHTMLVideo', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-markdown-image.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { createMarkdownImage } from '@utils/create-markdown-image.js'

test('createMarkdownImage', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-markdown-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createMarkdownLink } from '@utils/create-markdown-link.js'

describe('createMarkdownLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-org-mode-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createOrgModeLink } from '@utils/create-org-mode-link.js'

describe('createOrgModeLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/create-plain-text-link.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { createPlainTextLink } from '@utils/create-plain-text-link.js'

describe('createPlainTextLink', () => {
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/format-html.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { formatHTML } from '@utils/format-html.js'
import { dedent } from 'extra-tags'

Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/format-url.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { formatURL } from '@utils/format-url.js'
import { URLFormat, URLEncoding } from '@src/contract.js'

Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/format-urls-in-html.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { describe, test, expect } from 'vitest'
import { formatURLsInHTML } from '@utils/format-urls-in-html.js'
import { URLFormat, URLEncoding } from '@src/contract.js'
import { dedent } from 'extra-tags'
Expand Down
1 change: 1 addition & 0 deletions __tests__/utils/sanitize-html.spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { test, expect } from 'vitest'
import { sanitizeHTML } from '@utils/sanitize-html.js'

test('sanitizeHTML', () => {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"url": "^0.11.3",
"vite": "^5.0.10",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0",
"vitest": "^1.6.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES2020"
"target": "ES2021"
, "module": "NodeNext"
, "moduleResolution": "NodeNext"
, "jsx": "react-jsx"
Expand All @@ -24,7 +24,6 @@
{ "transform": "typescript-transform-paths" }
, { "transform": "typescript-transform-paths", "afterDeclarations": true }
]
, "types": ["@types/chrome", "vitest/globals"]
}
, "include": [
"src"
Expand Down
5 changes: 2 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineConfig } from 'vite'
import { defineConfig } from 'vitest/config'
import tsconfigPaths from 'vite-tsconfig-paths'

// https://vitejs.dev/config/
Expand All @@ -7,7 +7,6 @@ export default defineConfig({
tsconfigPaths()
]
, test: {
globals: true
, environment: 'jsdom'
environment: 'jsdom'
}
})
122 changes: 67 additions & 55 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1065,46 +1065,47 @@
resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406"
integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==

"@vitest/expect@1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-1.1.0.tgz#f58eef7de090ad65f30bb93ec54fa9f94c9d1d5d"
integrity sha512-9IE2WWkcJo2BR9eqtY5MIo3TPmS50Pnwpm66A6neb2hvk/QSLfPXBz2qdiwUOQkwyFuuXEUj5380CbwfzW4+/w==
"@vitest/expect@1.6.0":
version "1.6.0"
resolved "https://registry.yarnpkg.com/@vitest/expect/-/expect-1.6.0.tgz#0b3ba0914f738508464983f4d811bc122b51fb30"
integrity sha512-ixEvFVQjycy/oNgHjqsL6AZCDduC+tflRluaHIzKIsdbzkLn2U/iBnVeJwB6HsIjQBdfMR8Z0tRxKUsvFJEeWQ==
dependencies:
"@vitest/spy" "1.1.0"
"@vitest/utils" "1.1.0"
"@vitest/spy" "1.6.0"
"@vitest/utils" "1.6.0"
chai "^4.3.10"

"@vitest/runner@1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-1.1.0.tgz#b3bf60f4a78f4324ca09811dd0f87b721a96b534"
integrity sha512-zdNLJ00pm5z/uhbWF6aeIJCGMSyTyWImy3Fcp9piRGvueERFlQFbUwCpzVce79OLm2UHk9iwaMSOaU9jVHgNVw==
"@vitest/runner@1.6.0":
version "1.6.0"
resolved "https://registry.yarnpkg.com/@vitest/runner/-/runner-1.6.0.tgz#a6de49a96cb33b0e3ba0d9064a3e8d6ce2f08825"
integrity sha512-P4xgwPjwesuBiHisAVz/LSSZtDjOTPYZVmNAnpHHSR6ONrf8eCJOFRvUwdHn30F5M1fxhqtl7QZQUk2dprIXAg==
dependencies:
"@vitest/utils" "1.1.0"
"@vitest/utils" "1.6.0"
p-limit "^5.0.0"
pathe "^1.1.1"

"@vitest/snapshot@1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-1.1.0.tgz#b9924e4303382b43bb2c31061b173e69a6fb3437"
integrity sha512-5O/wyZg09V5qmNmAlUgCBqflvn2ylgsWJRRuPrnHEfDNT6tQpQ8O1isNGgo+VxofISHqz961SG3iVvt3SPK/QQ==
"@vitest/snapshot@1.6.0":
version "1.6.0"
resolved "https://registry.yarnpkg.com/@vitest/snapshot/-/snapshot-1.6.0.tgz#deb7e4498a5299c1198136f56e6e0f692e6af470"
integrity sha512-+Hx43f8Chus+DCmygqqfetcAZrDJwvTj0ymqjQq4CvmpKFSTVteEOBzCusu1x2tt4OJcvBflyHUE0DZSLgEMtQ==
dependencies:
magic-string "^0.30.5"
pathe "^1.1.1"
pretty-format "^29.7.0"

"@vitest/spy@1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-1.1.0.tgz#7f40697e4fc217ac8c3cc89a865d1751b263f561"
integrity sha512-sNOVSU/GE+7+P76qYo+VXdXhXffzWZcYIPQfmkiRxaNCSPiLANvQx5Mx6ZURJ/ndtEkUJEpvKLXqAYTKEY+lTg==
"@vitest/spy@1.6.0":
version "1.6.0"
resolved "https://registry.yarnpkg.com/@vitest/spy/-/spy-1.6.0.tgz#362cbd42ccdb03f1613798fde99799649516906d"
integrity sha512-leUTap6B/cqi/bQkXUu6bQV5TZPx7pmMBKBQiI0rJA8c3pB56ZsaTbREnF7CJfmvAS4V2cXIBAh/3rVwrrCYgw==
dependencies:
tinyspy "^2.2.0"

"@vitest/utils@1.1.0":
version "1.1.0"
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-1.1.0.tgz#d177a5f41bdb484bbb43c8d73a77ca782df068b5"
integrity sha512-z+s510fKmYz4Y41XhNs3vcuFTFhcij2YF7F8VQfMEYAAUfqQh0Zfg7+w9xdgFGhPf3tX3TicAe+8BDITk6ampQ==
"@vitest/utils@1.6.0":
version "1.6.0"
resolved "https://registry.yarnpkg.com/@vitest/utils/-/utils-1.6.0.tgz#5c5675ca7d6f546a7b4337de9ae882e6c57896a1"
integrity sha512-21cPiuGMoMZwiOHa2i4LXkMkMkCGzA+MVFV70jRwHo95dL4x/ts5GZhML1QWuy7yfp3WzK3lRvZi3JnXTYqrBw==
dependencies:
diff-sequences "^29.6.3"
estree-walker "^3.0.3"
loupe "^2.3.7"
pretty-format "^29.7.0"

Expand Down Expand Up @@ -1295,10 +1296,10 @@ acorn-walk@^8.0.2:
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.2.0.tgz#741210f2e2426454508853a2f44d0ab83b7f69c1"
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==

acorn-walk@^8.3.0:
version "8.3.1"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.1.tgz#2f10f5b69329d90ae18c58bf1fa8fccd8b959a43"
integrity sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==
acorn-walk@^8.3.2:
version "8.3.2"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.2.tgz#7703af9415f1b6db9315d6895503862e231d34aa"
integrity sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==

acorn@^8.1.0, acorn@^8.7.1, acorn@^8.8.1, acorn@^8.8.2:
version "8.8.2"
Expand Down Expand Up @@ -2492,6 +2493,13 @@ estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==

estree-walker@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.3.tgz#67c3e549ec402a487b4fc193d1953a524752340d"
integrity sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==
dependencies:
"@types/estree" "^1.0.0"

esutils@^2.0.2:
version "2.0.3"
resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
Expand Down Expand Up @@ -4055,6 +4063,11 @@ jiti@^1.19.1:
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==

js-tokens@^9.0.0:
version "9.0.0"
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-9.0.0.tgz#0f893996d6f3ed46df7f0a3b12a03f5fd84223c1"
integrity sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==

js-yaml@^4.1.0:
version "4.1.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
Expand Down Expand Up @@ -6295,12 +6308,12 @@ strip-json-comments@^3.1.1:
resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==

strip-literal@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-1.3.0.tgz#db3942c2ec1699e6836ad230090b84bb458e3a07"
integrity sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==
strip-literal@^2.0.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/strip-literal/-/strip-literal-2.1.0.tgz#6d82ade5e2e74f5c7e8739b6c84692bd65f0bd2a"
integrity sha512-Op+UycaUt/8FbN/Z2TWPBLge3jWrP3xj10f3fnYxf052bKuS3EKs1ZQcVGjnEMdsNVAM+plXRdmjrZ/KgG3Skw==
dependencies:
acorn "^8.10.0"
js-tokens "^9.0.0"

style-loader@^3.3.3:
version "3.3.3"
Expand Down Expand Up @@ -6446,10 +6459,10 @@ tinybench@^2.5.1:
resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.5.1.tgz#3408f6552125e53a5a48adee31261686fd71587e"
integrity sha512-65NKvSuAVDP/n4CqH+a9w2kTlLReS9vhsAP06MWx+/89nMinJyB2icyl58RIcqCmIggpojIGeuJGhjU1aGMBSg==

tinypool@^0.8.1:
version "0.8.1"
resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.8.1.tgz#b6c4e4972ede3e3e5cda74a3da1679303d386b03"
integrity sha512-zBTCK0cCgRROxvs9c0CGK838sPkeokNGdQVUUwHAbynHFlmyJYj825f/oRs528HaIJ97lo0pLIlDUzwN+IorWg==
tinypool@^0.8.3:
version "0.8.4"
resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.8.4.tgz#e217fe1270d941b39e98c625dcecebb1408c9aa8"
integrity sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==

tinyspy@^2.2.0:
version "2.2.0"
Expand Down Expand Up @@ -6836,10 +6849,10 @@ vfile@^6.0.0:
unist-util-stringify-position "^4.0.0"
vfile-message "^4.0.0"

vite-node@1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.1.0.tgz#0ebcb7398692e378954786dfba28e905e28a76b4"
integrity sha512-jV48DDUxGLEBdHCQvxL1mEh7+naVy+nhUUUaPAZLd3FJgXuxQiewHcfeZebbJ6onDqNGkP4r3MhQ342PRlG81Q==
vite-node@1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-1.6.0.tgz#2c7e61129bfecc759478fa592754fd9704aaba7f"
integrity sha512-de6HJgzC+TFzOu0NTC4RAIsyf/DY/ibWDYQUcuEA84EMHhcefTUGkjFHKKEJhQN4A+6I0u++kr3l36ZF2d7XRw==
dependencies:
cac "^6.7.14"
debug "^4.3.4"
Expand Down Expand Up @@ -6867,18 +6880,17 @@ vite@^5.0.0, vite@^5.0.10:
optionalDependencies:
fsevents "~2.3.3"

vitest@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/vitest/-/vitest-1.1.0.tgz#47ba67c564aa137b53b0197d2a992908e7f5b04d"
integrity sha512-oDFiCrw7dd3Jf06HoMtSRARivvyjHJaTxikFxuqJjO76U436PqlVw1uLn7a8OSPrhSfMGVaRakKpA2lePdw79A==
dependencies:
"@vitest/expect" "1.1.0"
"@vitest/runner" "1.1.0"
"@vitest/snapshot" "1.1.0"
"@vitest/spy" "1.1.0"
"@vitest/utils" "1.1.0"
acorn-walk "^8.3.0"
cac "^6.7.14"
vitest@^1.6.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/vitest/-/vitest-1.6.0.tgz#9d5ad4752a3c451be919e412c597126cffb9892f"
integrity sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==
dependencies:
"@vitest/expect" "1.6.0"
"@vitest/runner" "1.6.0"
"@vitest/snapshot" "1.6.0"
"@vitest/spy" "1.6.0"
"@vitest/utils" "1.6.0"
acorn-walk "^8.3.2"
chai "^4.3.10"
debug "^4.3.4"
execa "^8.0.1"
Expand All @@ -6887,11 +6899,11 @@ vitest@^1.1.0:
pathe "^1.1.1"
picocolors "^1.0.0"
std-env "^3.5.0"
strip-literal "^1.3.0"
strip-literal "^2.0.0"
tinybench "^2.5.1"
tinypool "^0.8.1"
tinypool "^0.8.3"
vite "^5.0.0"
vite-node "1.1.0"
vite-node "1.6.0"
why-is-node-running "^2.2.2"

w3c-xmlserializer@^4.0.0:
Expand Down

0 comments on commit b05f751

Please sign in to comment.