vitest 0.17.1 → 0.19.0
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.
- package/LICENSE.md +6 -6
- package/dist/browser.d.ts +1850 -0
- package/dist/browser.mjs +20 -0
- package/dist/{chunk-api-setup.c728e251.mjs → chunk-api-setup.0cf2c96a.mjs} +37 -11
- package/dist/{chunk-constants.27550afb.mjs → chunk-constants.38b43a44.mjs} +3 -3
- package/dist/{chunk-env-node.aa51c4cc.mjs → chunk-defaults.408a0cfe.mjs} +457 -455
- package/dist/{chunk-install-pkg.6f5930c3.mjs → chunk-install-pkg.6c6dc0c2.mjs} +11 -10
- package/dist/chunk-integrations-globals.803277be.mjs +24 -0
- package/dist/chunk-node-git.9058b82a.mjs +1139 -0
- package/dist/chunk-runtime-chain.1e1aabb3.mjs +2025 -0
- package/dist/{vendor-entry.1ad8a08d.mjs → chunk-runtime-error.d82dd2cf.mjs} +167 -183
- package/dist/{chunk-runtime-chain.6d23d202.mjs → chunk-runtime-hooks.db398170.mjs} +33 -2012
- package/dist/{chunk-runtime-mocker.34b9d585.mjs → chunk-runtime-mocker.dfdfd57b.mjs} +70 -22
- package/dist/{chunk-runtime-rpc.d986adb9.mjs → chunk-runtime-rpc.45d8ee19.mjs} +1 -1
- package/dist/{chunk-utils-global.4828c2e2.mjs → chunk-utils-global.2aa95025.mjs} +14 -9
- package/dist/{chunk-utils-source-map.a9047343.mjs → chunk-utils-source-map.8b066ce2.mjs} +2 -2
- package/dist/{chunk-vite-node-externalize.0fc8ed68.mjs → chunk-vite-node-externalize.a2813ad7.mjs} +1202 -2178
- package/dist/chunk-vite-node-utils.ad73f2ab.mjs +1433 -0
- package/dist/cli.mjs +11 -13
- package/dist/config.cjs +4 -1
- package/dist/config.d.ts +1 -0
- package/dist/config.mjs +4 -1
- package/dist/entry.mjs +54 -10
- package/dist/index.d.ts +126 -58
- package/dist/index.mjs +12 -9
- package/dist/node.d.ts +109 -58
- package/dist/node.mjs +12 -14
- package/dist/spy.mjs +102 -2
- package/dist/suite.mjs +13 -0
- package/dist/vendor-index.61438b77.mjs +335 -0
- package/dist/{vendor-index.a2a385d8.mjs → vendor-index.62ce5c33.mjs} +6 -338
- package/dist/{vendor-index.98e769c1.mjs → vendor-index.de788b6a.mjs} +7 -7
- package/dist/worker.mjs +6 -6
- package/package.json +20 -12
- package/dist/chunk-integrations-globals.3df36e26.mjs +0 -26
- package/dist/chunk-integrations-spy.674b628e.mjs +0 -102
- package/dist/chunk-vite-node-utils.0f776286.mjs +0 -9195
package/LICENSE.md
CHANGED
|
@@ -869,7 +869,7 @@ Repository: ehmicky/human-signals
|
|
|
869
869
|
> same "printed page" as the copyright notice for easier
|
|
870
870
|
> identification within third-party archives.
|
|
871
871
|
>
|
|
872
|
-
> Copyright
|
|
872
|
+
> Copyright 2019 ehmicky <ehmicky@gmail.com>
|
|
873
873
|
>
|
|
874
874
|
> Licensed under the Apache License, Version 2.0 (the "License");
|
|
875
875
|
> you may not use this file except in compliance with the License.
|
|
@@ -1229,7 +1229,7 @@ Repository: sindresorhus/mimic-fn
|
|
|
1229
1229
|
|
|
1230
1230
|
> MIT License
|
|
1231
1231
|
>
|
|
1232
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (
|
|
1232
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1233
1233
|
>
|
|
1234
1234
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1235
1235
|
>
|
|
@@ -1245,7 +1245,7 @@ Repository: unjs/mlly
|
|
|
1245
1245
|
|
|
1246
1246
|
> MIT License
|
|
1247
1247
|
>
|
|
1248
|
-
> Copyright (c)
|
|
1248
|
+
> Copyright (c) 2022 UnJS
|
|
1249
1249
|
>
|
|
1250
1250
|
> Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1251
1251
|
> of this software and associated documentation files (the "Software"), to deal
|
|
@@ -1281,7 +1281,7 @@ Repository: sindresorhus/npm-run-path
|
|
|
1281
1281
|
|
|
1282
1282
|
> MIT License
|
|
1283
1283
|
>
|
|
1284
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (
|
|
1284
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1285
1285
|
>
|
|
1286
1286
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1287
1287
|
>
|
|
@@ -1366,7 +1366,7 @@ Repository: sindresorhus/path-key
|
|
|
1366
1366
|
|
|
1367
1367
|
> MIT License
|
|
1368
1368
|
>
|
|
1369
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (
|
|
1369
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1370
1370
|
>
|
|
1371
1371
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1372
1372
|
>
|
|
@@ -1882,7 +1882,7 @@ Repository: sindresorhus/strip-final-newline
|
|
|
1882
1882
|
|
|
1883
1883
|
> MIT License
|
|
1884
1884
|
>
|
|
1885
|
-
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (
|
|
1885
|
+
> Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
|
1886
1886
|
>
|
|
1887
1887
|
> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
1888
1888
|
>
|