DIR: /proc/1784574/root/usr/share/doc/node-tape/examples/ |
Current File : //proc/1784574/root/usr/share/doc/node-tape/examples/throw_fail.js |
'use strict'; var test = require('tape'); test('throw', function (t) { t.plan(2); setTimeout(function () { throw new Error('doom'); }, 100); }); |