/
eb
/
Surf
Обзор
Документация
Войти
/
eb
/
Surf
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/has-cors/test.js
24 строки
510 B
EvgeniyBudaev
Initial commit
17 фев 2020, 09:02
17 фев 2020, 09:02
bb6f06f
Код
Авторство
О чём код?
var expect = require('chai').expect; describe('has-cors', function() { beforeEach(function() { // make sure result is not cached delete require.cache[require.resolve('./')]; }); it('should not have cors', function() { var hasCors = require('./'); expect(hasCors).to.be.false; }); it('should have cors', function() { global.XMLHttpRequest = function() { this.withCredentials = true; }; var hasCors = require('./'); expect(hasCors).to.be.true; }); });