From af73e848b6d9d1f0c0f701304aa8ba13ed007f59 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Wed, 20 May 2015 12:53:55 -0400 Subject: [PATCH] fix test --- test/samples/export-not-at-top-level-fails/_config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/samples/export-not-at-top-level-fails/_config.js b/test/samples/export-not-at-top-level-fails/_config.js index f9aab04..c68ca42 100644 --- a/test/samples/export-not-at-top-level-fails/_config.js +++ b/test/samples/export-not-at-top-level-fails/_config.js @@ -1,8 +1,11 @@ +var path = require( 'path' ); var assert = require( 'assert' ); module.exports = { description: 'disallows non-top-level exports', error: function ( err ) { - assert.ok( false, 'TODO: pick an error message' ); + assert.equal( err.file, path.resolve( __dirname, 'main.js' ) ); + assert.deepEqual( err.loc, { line: 2, column: 2 }); + assert.ok( /may only appear at the top level/.test( err.message ) ); } };