git ssb

0+

mixmix / ssb-testing-guide



Tree: deab40d7559694e847b5a4de670225441bb3c282

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