forked from wooorm/gemoji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
35 lines (28 loc) · 924 Bytes
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* @typedef {import('./script/build-data').Emoji} Emoji
*/
import fs from 'node:fs'
import assert from 'node:assert'
import test from 'tape'
import {gemoji} from './index.js'
/** @type {Array<Emoji>} */
const emoji = JSON.parse(String(fs.readFileSync('emoji.json')))
test('gemoji', function (t) {
let index = -1
t.plan(emoji.length)
while (++index < gemoji.length) {
const info = gemoji[index]
t.doesNotThrow(function () {
assert.strictEqual(info.emoji, emoji[index].emoji, 'emoji')
assert.strictEqual(info.category, emoji[index].category, 'category')
assert.strictEqual(
info.description,
emoji[index].description,
'description'
)
assert.deepStrictEqual(info.names, emoji[index].aliases, 'names')
assert.deepStrictEqual(info.tags, emoji[index].tags, 'tags')
}, emoji[index].emoji + ' ' + emoji[index].description)
}
t.end()
})