mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
9 lines
280 B
TypeScript
9 lines
280 B
TypeScript
import domainSorter from './stable-sort-domain';
|
|
import { describe, it, expect } from 'bun:test';
|
|
|
|
describe('stable-sort-domain', () => {
|
|
it('.ks.cn, .tag.unclaimedproperty.ks.gov', () => {
|
|
expect(domainSorter('.ks.cn', '.tag.unclaimedproperty.ks.gov')).toBe(-1);
|
|
});
|
|
});
|