Sha256: eb82705bb8bd711ab3f8f904a4ee65f53d540429b1d595a61c334fc6326ab845

Contents?: true

Size: 616 Bytes

Versions: 3

Compression:

Stored size: 616 Bytes

Contents

var test = require('tap').test;
var spawn = require('child_process').spawn;
var path = require('path');

if (false) require('__32jlkbeep');

test('error code', function (t) {
    t.plan(2);
    
    var cwd = process.cwd();
    process.chdir(__dirname);
    
    var ps = spawn(process.execPath, [
        path.resolve(__dirname, '../bin/cmd.js'),
        path.resolve(__dirname, 'error_code/src.js')
    ]);
    var err = '';
    ps.stderr.on('data', function (buf) { err += buf });
    
    ps.on('exit', function (code) {
        t.notEqual(code, 0);
        t.ok(/^(Syntax|Parse)Error:/m.test(err));
    });
});

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
snowball-0.1.22 node_modules/browserify/test/error_code.js
sprockets-browserify-0.1.2 node_modules/browserify/test/error_code.js
sprockets-browserify-0.1.0 node_modules/browserify/test/error_code.js