webring/test/webring_test.ts

7 lines
196 B
TypeScript

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