Remove CoffeeScript references from unit tests

https://github.com/ariya/phantomjs/issues/12429
2.0
Milian Wolff 2014-08-06 15:08:24 +02:00
parent 48fabe0646
commit 0c55c0a9e0
2 changed files with 0 additions and 5 deletions

View File

@ -1 +0,0 @@
module.exports = 'require/coffee_dummy'

View File

@ -19,10 +19,6 @@ describe("require()", function() {
require('system').platform.should.equal('phantomjs');
});
it("loads CoffeeScript modules", function() {
require('./coffee_dummy').should.equal('require/coffee_dummy');
});
it("doesn't expose CoffeeScript", function() {
should.not.exist(window.CoffeeScript);
});