Remove incorrectly commited test file

This commit is contained in:
kpdecker
2013-06-01 23:57:21 -05:00
parent 9d4a94616a
commit bcc8d00e89
-18
View File
@@ -1,18 +0,0 @@
var sourceMap = require('source-map'),
SourceMapConsumer = sourceMap.SourceMapConsumer;
describe('source-map', function() {
if (!Handlebars.Parser) {
return;
}
it('returns source map', function() {
var template = Handlebars.precompile('{{foo}}', {filename: 'foo.handlebars', sourcemap: true});
(typeof template.template).should.equal('string');
(typeof template.sourcemap).should.equal('string');
return;
var consumer = new SourceMapConsumer(template.sourcemap);
consumer.eachMapping(function(mapping) {
}, this, SourceMapConsumer.ORIGINAL_ORDER);
});
});