mirror of
https://github.com/SukkaW/Surge.git
synced 2025-12-12 01:00:34 +08:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { describe, it } from 'mocha';
|
|
|
|
import { normalizeDomain } from './normalize-domain';
|
|
|
|
describe('normalizeDomain', () => {
|
|
it('mine.torrent.pw', () => {
|
|
console.log(normalizeDomain('mine.torrent.pw'));
|
|
});
|
|
});
|