magic-assert-strings.js 146 B

12345678
  1. import test from 'ava';
  2. test('strings', t => {
  3. const actual = 'this is amazing';
  4. const expected = 'this is cool';
  5. t.is(actual, expected);
  6. });