Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save beijaflor/c40107edb7bb10b2b7c6 to your computer and use it in GitHub Desktop.
Save beijaflor/c40107edb7bb10b2b7c6 to your computer and use it in GitHub Desktop.
Anatomy of a Unit Test
import test from 'tape';
// For each unit test you write,
// answer these questions:
test('What component aspect are you testing?', assert => {
const actual = 'What is the actual output?';
const expected = 'What is the expected output?';
assert.equal(actual, expected,
'What should the feature do?');
assert.end();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment