magic-assert-exceptions.js 113 B

1234567
  1. import fs from 'fs';
  2. import test from 'ava';
  3. test('exception', t => {
  4. fs.readFileSync('non-existent-file')
  5. });