git ssb

0+

mixmix / ssb-testing-guide



Tree: ad37f0a371c3352030b9e54de0e60d77bbbbe017

Files: ad37f0a371c3352030b9e54de0e60d77bbbbe017 / 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