mirror of
https://github.com/Mibew/simple-icons.git
synced 2024-11-15 18:04:12 +03:00
e0df400494
* Add prettier as a dependency * Add format command and configure prettier I opted for single quotes to be in line with other simple-icons projects I ignore the data file because changing its formatting is quite a bit of trouble for all open PRs. * Run prettier * Replace all functions by arrow functions * Move prettier configuration to config file Move it to a file so editors (and other software) can pick up on the configuration. I went with .js because (a) it allows for comments and (2) it seems most of the config files are in JavaScript already. * Add prettier --check when running npm run lint (This adds it to the CI as well) * Add husky and format changes before committing * Use object destructuring for imports consistently * Add shebang and fileoverview to jsonlint.js
65 lines
2.0 KiB
JavaScript
65 lines
2.0 KiB
JavaScript
const { icons } = require('../_data/simple-icons.json');
|
|
const { getIconSlug } = require('../scripts/utils.js');
|
|
|
|
icons.forEach((icon) => {
|
|
const filename = getIconSlug(icon);
|
|
const subject = require(`../icons/${filename}.js`);
|
|
|
|
test(`${icon.title} has the correct "title"`, () => {
|
|
expect(typeof subject.title).toBe('string');
|
|
expect(subject.title).toEqual(icon.title);
|
|
});
|
|
|
|
test(`${icon.title} has the correct "slug"`, () => {
|
|
expect(typeof subject.slug).toBe('string');
|
|
expect(subject.slug).toEqual(getIconSlug(icon));
|
|
});
|
|
|
|
test(`${icon.title} has the correct "hex" value`, () => {
|
|
expect(typeof subject.hex).toBe('string');
|
|
expect(subject.hex).toEqual(icon.hex);
|
|
});
|
|
|
|
test(`${icon.title} has the correct "source"`, () => {
|
|
expect(typeof subject.source).toBe('string');
|
|
expect(subject.source).toEqual(icon.source);
|
|
});
|
|
|
|
test(`${icon.title} has an "svg" value`, () => {
|
|
expect(typeof subject.svg).toBe('string');
|
|
});
|
|
|
|
test(`${icon.title} has a valid "path" value`, () => {
|
|
expect(typeof subject.path).toBe('string');
|
|
expect(subject.path).toMatch(/^[MmZzLlHhVvCcSsQqTtAaEe0-9-,.\s]+$/g);
|
|
});
|
|
|
|
test(`${icon.title} has ${
|
|
icon.guidelines ? 'the correct' : 'no'
|
|
} "guidelines"`, () => {
|
|
if (icon.guidelines) {
|
|
expect(typeof subject.guidelines).toBe('string');
|
|
expect(subject.guidelines).toEqual(icon.guidelines);
|
|
} else {
|
|
expect(subject.guidelines).toBeUndefined();
|
|
}
|
|
});
|
|
|
|
test(`${icon.title} has ${
|
|
icon.license ? 'the correct' : 'no'
|
|
} "license"`, () => {
|
|
if (icon.license) {
|
|
expect(typeof subject.license).toBe('object');
|
|
expect(subject.license).toHaveProperty('type', icon.license.type);
|
|
if (icon.license.type === 'custom') {
|
|
expect(subject.license).toHaveProperty('url', icon.license.url);
|
|
} else {
|
|
expect(typeof subject.license.url).toBe('string');
|
|
expect(subject.license.url).toMatch(/^https?:\/\/[^\s]+$/);
|
|
}
|
|
} else {
|
|
expect(subject.license).toBeUndefined();
|
|
}
|
|
});
|
|
});
|