/
githubmirror
/
Semantic-UI
Обзор
Документация
Войти
/
githubmirror
/
Semantic-UI
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/meteor/fonts.js
16 строк
625 B
jlukic
Restructure test/ for meteor #1607
12 янв 2015, 21:46
12 янв 2015, 21:46
8afab4a
Код
Авторство
О чём код?
// Check that the font files are downloadable. Meteor places assets at /packages/<packageName>/. ['eot', 'otf', 'svg', 'ttf', 'woff'] .forEach(function (extension) { Tinytest.addAsync(extension + ' fonts are shipped', function (test, done) { HTTP.get('/packages/semantic_ui/dist/themes/default/assets/fonts/icons.' + extension, function callback(error, result) { if (error) { test.fail({message: 'Font failed to load'}); } else { test.isTrue(result.content.length > 10000, extension + ' font could not be downloaded'); } done(); }); }); }) ;