mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 17:20:35 +08:00
11 lines
358 B
TypeScript
11 lines
358 B
TypeScript
// eslint-disable-next-line import-x/no-unresolved -- bun
|
|
import { describe, it } from 'bun:test';
|
|
|
|
import { calcDomainAbuseScore } from './get-phishing-domains';
|
|
|
|
describe('sortDomains', () => {
|
|
it('nmdj.pl', () => {
|
|
console.log(calcDomainAbuseScore('.01462ccca801fed55370d79231c876e5.nmdj.pl', '.01462ccca801fed55370d79231c876e5', false));
|
|
});
|
|
});
|