get-phishing-domains.test.ts 297 B

123456789
  1. import { describe, it } from 'mocha';
  2. import { calcDomainAbuseScore } from './get-phishing-domains';
  3. describe('sortDomains', () => {
  4. it('nmdj.pl', () => {
  5. console.log(calcDomainAbuseScore('.01462ccca801fed55370d79231c876e5.nmdj.pl', '.01462ccca801fed55370d79231c876e5', false));
  6. });
  7. });