git ssb

0+

mixmix / ssb-testing-guide



Tree: 326143a7cc03b1862d32495613d1e30125cdd40b

Files: 326143a7cc03b1862d32495613d1e30125cdd40b / basic / 1_helloWorld.test.js

390 bytesRaw
1const test = require('tape')
2
3test('hello world', t => {
4 t.equal(2 + 2, 4, "basic addition works!")
5 t.end()
6})
7
8test('async hello world', t => {
9 t.plan(1)
10 setTimeout(() => {
11 t.equal(2 + 2, 4, "basic addition works!")
12 // Could put t.end here alternatively!
13 })
14})
15
16test('throws hello world', t => {
17 t.plan(1)
18 t.throws(() => {
19 throw new Error("Hello world!")
20 })
21})
22

Built with git-ssb-web