suite.js 293 B

1234567891011121314151617
  1. import tape from 'tape';
  2. import _test from 'tape-promise';
  3. const tapetest = _test(tape);
  4. import * as reducers from '../src/reducers/index.js';
  5. import * as actions from '../src/actions.js';
  6. tapetest('test', async function testProgram(t) {
  7. t.pass('empty test file');
  8. t.end();
  9. });