/
githubmirror
/
preact
Обзор
Документация
Войти
/
githubmirror
/
preact
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
10.28.2
vitest.setup.js
47 строк
1 KB
jdecroock
Bump some stuff
25 апр 2025, 08:56
25 апр 2025, 08:56
e6a4080
Код
Авторство
О чём код?
import sinon from 'sinon'; import { expect, chai, describe } from 'vitest'; import sinonChai from 'sinon-chai'; chai.use(sinonChai); globalThis.context = describe; globalThis.sinon = sinon; window.addEventListener('error', () => {}) // Something that's loaded before this file polyfills Symbol object. // We need to verify that it works in IE without that. if (/Trident/.test(window.navigator.userAgent)) { window.Symbol = undefined; } // Fix Function#name on browsers that do not support it (IE). // Taken from: https://stackoverflow.com/a/17056530/755391 if (!function f() {}.name) { Object.defineProperty(Function.prototype, 'name', { get() { let name = (this.toString().match(/^function\s*([^\s(]+)/) || [])[1]; // For better performance only parse once, and then cache the // result through a new accessor for repeated access. Object.defineProperty(this, 'name', { value: name }); return name; } }); } expect.extend({ equalNode: (obj, expected) => { if (expected == null) { return { pass: obj == null, message: () => `expected node to "== null" but got ${obj} instead.` }; } else { return { pass: obj.tagName === expected.tagName && obj === expected, message: () => `expected node to have tagName ${expected.tagName} but got ${obj.tagName} instead.` }; } } });