2
0
mirror of https://github.com/iconify/collections-json.git synced 2024-09-18 18:19:00 +00:00

chore: add jest with esm and include a simple test

This commit is contained in:
Joaquín Sánchez Jiménez 2021-09-17 00:32:02 +02:00
parent 0b0bf01ca6
commit 689daad512
6 changed files with 1845 additions and 59 deletions

28
jest.config.ts Normal file
View File

@ -0,0 +1,28 @@
import type { Config } from '@jest/types'
// see https://jestjs.io/docs/ecmascript-modules
// Sync object
const config: Config.InitialOptions = {
verbose: true,
testMatch: [
'**/__tests__/**/*.+(ts|tsx|js)',
'**/?(*.)+(spec|test).+(ts|tsx|js)',
],
moduleDirectories: [
'node_modules',
'src',
],
moduleFileExtensions: ['ts', 'js'],
extensionsToTreatAsEsm: ['.ts'],
transform: {
'^.+\\.ts$': 'ts-jest',
},
globals: {
'ts-jest': {
useESM: true,
},
},
}
export default config

View File

@ -23,17 +23,23 @@
"bugs": "https://github.com/iconify/collections-json/issues",
"scripts": {
"build": "rimraf dist && tsup src/index.ts --format cjs,esm --dts",
"test": "esno src/test.ts"
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"dependencies": {
"upath": "^2.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.9.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"esno": "^0.9.1",
"jest": "^27.2.0",
"jest-each": "^27.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tsup": "^4.14.0",
"typescript": "^4.4.3"
}

12
src/locate.test.ts Normal file
View File

@ -0,0 +1,12 @@
import { resolve } from 'path'
import { locate } from '../dist'
const cwd = process.cwd()
describe('locate', () => {
test('mdi resolves the json collection', () => {
const received = locate('mdi') as string
const expected = resolve(cwd, 'json/', 'mdi.json').replace(/\\/g, '/')
expect(received).toBe(expected)
})
})

View File

@ -1,12 +0,0 @@
import { lookupCollection, locate, lookupCollections } from '.'
const test = async(): Promise<void> => {
const fa = locate('fa')
console.log(fa)
const faLib = await lookupCollection('fa')
console.log(faLib)
const allCollections = await lookupCollections()
console.log(allCollections.fa)
}
test()

View File

@ -1,7 +1,8 @@
{
"compilerOptions": {
"baseUrl": ".",
"module": "ESNext",
"target": "es2017",
"target": "ESNext",
"lib": ["ESNext"],
"esModuleInterop": true,
"strict": true,

1841
yarn.lock

File diff suppressed because it is too large Load Diff