@vitest/browser 0.27.2 → 0.28.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/stubs/console.js DELETED
@@ -1 +0,0 @@
1
- export const Console = {}
package/stubs/fs.js DELETED
@@ -1,7 +0,0 @@
1
- import noop from './noop'
2
-
3
- export default noop
4
- export { noop as promises }
5
- export function existsSync() {
6
- return false
7
- }
@@ -1,2 +0,0 @@
1
- export const isPackageExists = () => {}
2
- export const importModule = () => {}
package/stubs/module.js DELETED
@@ -1 +0,0 @@
1
- export const createRequire = () => {}
package/stubs/noop.js DELETED
@@ -1,5 +0,0 @@
1
- export default new Proxy({}, {
2
- get() {
3
- throw new Error('Module has been externalized for browser compatibility and cannot be accessed in client code.')
4
- },
5
- })
@@ -1 +0,0 @@
1
- export const performance = globalThis.performance
package/stubs/tty.js DELETED
@@ -1,3 +0,0 @@
1
- export const isatty = () => false
2
-
3
- export default { isatty }