jasonmorganson
1/12/2016 - 4:19 AM

Anatomy of a Unit Test

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();
});