You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
/* global describe, it */ |
|
|
|
var requireMainFilename = require('./') |
|
|
|
require('tap').mochaGlobals() |
|
require('chai').should() |
|
|
|
describe('require-main-filename', function () { |
|
it('returns require.main.filename in normal circumstances', function () { |
|
requireMainFilename().should.match(/test\.js/) |
|
}) |
|
|
|
it('should use children[0].filename when running on iisnode', function () { |
|
var main = { |
|
filename: 'D:\\Program Files (x86)\\iisnode\\interceptor.js', |
|
children: [ {filename: 'D:\\home\\site\\wwwroot\\server.js'} ] |
|
} |
|
requireMainFilename({ |
|
main: main |
|
}).should.match(/server\.js/) |
|
}) |
|
|
|
it('should not use children[0] if no children exist', function () { |
|
var main = { |
|
filename: 'D:\\Program Files (x86)\\iisnode\\interceptor.js', |
|
children: [] |
|
} |
|
requireMainFilename({ |
|
main: main |
|
}).should.match(/interceptor\.js/) |
|
}) |
|
|
|
it('should default to process.cwd() if require.main is undefined', function () { |
|
requireMainFilename({}).should.match(/require-main-filename/) |
|
}) |
|
})
|
|
|