/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spec/atom-protocol-handler-spec.js
10 строк
384 B
Sadick
Decaffeinate specs (#21546)
30 окт 2020, 16:40
Не верифицирован
30 окт 2020, 16:40
83d6c09
Код
Авторство
О чём код?
describe('"atom" protocol URL', () => it('sends the file relative in the package as response', function() { let called = false; const request = new XMLHttpRequest(); request.addEventListener('load', () => (called = true)); request.open('GET', 'atom://async/package.json', true); request.send(); waitsFor('request to be done', () => called === true); }));