1
0
mirror of https://github.com/simple-icons/simple-icons.git synced 2024-11-16 00:59:07 +02:00
simple-icons/tests/docs.test.js

40 lines
1.2 KiB
JavaScript
Raw Normal View History

2024-06-06 14:40:35 +02:00
/**
* @file Tests for the documentation.
*/
2024-03-24 19:38:18 +02:00
import {strict as assert} from 'node:assert';
import {test} from 'mocha';
import {getThirdPartyExtensions, getThirdPartyLibraries} from '../sdk.mjs';
test('README third party extensions must be alphabetically sorted', async () => {
const thirdPartyExtensions = await getThirdPartyExtensions();
assert.ok(thirdPartyExtensions.length > 0);
const thirdPartyExtensionsNames = thirdPartyExtensions.map(
2024-03-24 19:38:18 +02:00
(extension) => extension.module.name,
);
2024-03-24 19:38:18 +02:00
const expectedOrder = [...thirdPartyExtensionsNames].sort();
assert.deepEqual(
thirdPartyExtensionsNames,
expectedOrder,
'Wrong alphabetical order of third party extensions in README.',
);
});
test('README third party libraries must be alphabetically sorted', async () => {
const thirdPartyLibraries = await getThirdPartyLibraries();
assert.ok(thirdPartyLibraries.length > 0);
const thirdPartyLibrariesNames = thirdPartyLibraries.map(
(library) => library.module.name,
);
const expectedOrder = [...thirdPartyLibrariesNames].sort();
assert.deepEqual(
thirdPartyLibrariesNames,
expectedOrder,
'Wrong alphabetical order of third party libraries in README.',
);
});