8 lines
196 B
TypeScript
8 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');
|
||
|
});
|