fix megalodon unit tests

This commit is contained in:
Hazelnoot 2024-11-27 22:52:53 -05:00
parent 7aba846446
commit 9f640beecc
2 changed files with 9 additions and 8 deletions

View file

@ -7,7 +7,7 @@
"scripts": {
"build": "tsc -p ./",
"doc": "typedoc --out ../docs ./src",
"test": "NODE_ENV=test jest -u --maxWorkers=3"
"test": "cross-env NODE_ENV=test jest -u --maxWorkers=3"
},
"engines": {
"node": ">=15.0.0"

View file

@ -49,13 +49,14 @@ describe('detector', () => {
})
})
describe('wildebeest', () => {
const url = 'https://wildebeest.mirror-kt.dev'
it('should be mastodon', async () => {
const wildebeest = await detector(url)
expect(wildebeest).toEqual('mastodon')
})
})
// This domain no longer resolves, and resolution failures apparently crash jest
// describe('wildebeest', () => {
// const url = 'https://wildebeest.mirror-kt.dev'
// it('should be mastodon', async () => {
// const wildebeest = await detector(url)
// expect(wildebeest).toEqual('mastodon')
// })
// })
describe('unknown', () => {
const url = 'https://google.com'