stable-sort-domain.test.ts 280 B

12345678
  1. import domainSorter from './stable-sort-domain';
  2. import { describe, it, expect } from 'bun:test';
  3. describe('stable-sort-domain', () => {
  4. it('.ks.cn, .tag.unclaimedproperty.ks.gov', () => {
  5. expect(domainSorter('.ks.cn', '.tag.unclaimedproperty.ks.gov')).toBe(-1);
  6. });
  7. });