mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
8 lines
205 B
JavaScript
8 lines
205 B
JavaScript
|
import test from 'ava';
|
||
|
|
||
|
import definitionPermalink from '../definitionPermalink';
|
||
|
|
||
|
test('constructs correct detail link', (t) => {
|
||
|
t.is(definitionPermalink('test-slug'), '/definitions/test-slug/');
|
||
|
});
|