mirror of
https://github.com/Drop-OSS/droplet.git
synced 2025-11-09 20:12:18 +10: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)
|
|
})
|