Skip to content
This repository was archived by the owner on Aug 31, 2018. It is now read-only.

Commit 561680c

Browse files
tejbirsinghaddaleax
authored andcommitted
test: change common.fixturesDir to fixtures.path
Use common.fixtures module instead of common.fixturesDir based on task at Nodejs code and learn at Node.js Interactive 2017 in Vancouver. PR-URL: nodejs/node#15860 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: Richard Lau <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
1 parent ed3783d commit 561680c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

test/parallel/test-require-exceptions.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@
2222
'use strict';
2323
const common = require('../common');
2424
const assert = require('assert');
25+
const fixtures = require('../common/fixtures');
2526

2627
// A module with an error in it should throw
2728
assert.throws(function() {
28-
require(`${common.fixturesDir}/throws_error`);
29+
require(fixtures.path('/throws_error'));
2930
}, /^Error: blah$/);
3031

3132
// Requiring the same module again should throw as well
3233
assert.throws(function() {
33-
require(`${common.fixturesDir}/throws_error`);
34+
require(fixtures.path('/throws_error'));
3435
}, /^Error: blah$/);
3536

3637
// Requiring a module that does not exist should throw an
@@ -43,13 +44,13 @@ assertModuleNotFound('/module-require/not-found/trailingSlash');
4344

4445
function assertModuleNotFound(path) {
4546
assert.throws(function() {
46-
require(common.fixturesDir + path);
47+
require(fixtures.path(path));
4748
}, function(e) {
4849
assert.strictEqual(e.code, 'MODULE_NOT_FOUND');
4950
return true;
5051
});
5152
}
5253

5354
function assertExists(fixture) {
54-
assert(common.fileExists(common.fixturesDir + fixture));
55+
assert(common.fileExists(fixtures.path(fixture)));
5556
}

0 commit comments

Comments
 (0)