webring/test/webring_test.ts

8 lines
196 B
TypeScript
Raw Normal View History

import { assertEquals } from '@std/assert';
import { next } from '../src/webring.ts';
Deno.test(function nextTest() {
const nextEntry = next('main');
assertEquals(nextEntry.id, 'dslog');
});