wishthis/node_modules/fomantic-ui/test/meteor/fonts.js

16 lines
696 B
JavaScript
Raw Normal View History

2022-01-13 13:00:31 +00:00
// Check that the font files are downloadable. Meteor places assets at /packages/<packageName>/.
['eot', 'otf', 'svg', 'ttf', 'woff']
2023-08-17 09:47:40 +00:00
.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();
});
});
})
2022-06-08 10:36:39 +00:00
;