-
-
Save joyrexus/41571e24dcffd51f051db11deb0d73bb to your computer and use it in GitHub Desktop.
just use tape
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import test from 'tape'; | |
const before = test; | |
const after = test; | |
// beforeEach/afterEach rely on shared state. | |
// That's a big anti-pattern for testing. | |
// It's also silly to run something before and after | |
// ever test -- many of your tests won't need it. | |
// Try this, instead: | |
const setup = () => { | |
const fixtures = {}; | |
// Insert your fixture code here. | |
// Make sure you're creating fresh objects each | |
// time setup() is called. | |
return fixtures; | |
}; | |
const teardown = (fixtures) => { | |
// Dispose of your fixtures here. | |
}; | |
before('before', function (assert) { | |
assert.pass('Do something before tests here'); | |
assert.end(); | |
}); | |
test('A test with fixtures', (assert) => { | |
const fixture = setup(); | |
assert.equal(typeof fixture, 'object', | |
'fixture should return an object'); | |
teardown(fixture); | |
assert.end(); | |
}); | |
test('A passing test', (assert) => { | |
assert.pass('This test will pass.'); | |
assert.end(); | |
}); | |
test('Assertions with tape.', (assert) => { | |
const expected = 'something to test'; | |
const actual = 'sonething to test'; | |
assert.equal(actual, expected, | |
'Given two mismatched values, .equal() should produce a nice bug report'); | |
assert.end(); | |
}); | |
after('after', (assert) => { | |
assert.pass('Do something after tests here.'); | |
assert.end(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment