mirror of
https://github.com/hydralauncher/hydra.git
synced 2026-01-10 21:36:17 +00:00
9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import test from 'ava'
|
|
|
|
import { plus100 } from '../index'
|
|
|
|
test('sync function from native code', (t) => {
|
|
const fixture = 42
|
|
t.is(plus100(fixture), fixture + 100)
|
|
})
|