Set up testing with Ava

This commit is contained in:
Glen Whitney 2019-12-11 12:07:43 -05:00
parent eb81cee609
commit c3995d6fcb
6 changed files with 3884 additions and 31 deletions

View file

@ -0,0 +1,6 @@
import test from 'ava'
import {three, threeLoaded} from '../site/externals.js'
test "load three", (t) ->
await threeLoaded
t.not(three, null, 'three loaded successfully')