mirror of
https://example.com
synced 2024-11-25 09:16:39 +09:00
8 lines
116 B
JavaScript
8 lines
116 B
JavaScript
|
import test from 'ava'
|
||
|
|
||
|
import { sum } from '../index.js'
|
||
|
|
||
|
test('sum from native', (t) => {
|
||
|
t.is(sum(1, 2), 3)
|
||
|
})
|