Skip to content

Commit

Permalink
Remove duplicate test.
Browse files Browse the repository at this point in the history
  • Loading branch information
hibnico authored and fitzgen committed Sep 23, 2015
1 parent ff05274 commit 6f6c256
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions test/test-source-map-consumer.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,26 +154,6 @@
util.assertMapping(2, 28, '/the/root/two.js', 2, 10, 'n', null, map, assert);
};


exports['test mapping tokens back exactly'] = function (assert) {
var map = new SourceMapConsumer(util.testMap);

util.assertMapping(1, 1, '/the/root/one.js', 1, 1, null, null, map, assert);
util.assertMapping(1, 5, '/the/root/one.js', 1, 5, null, null, map, assert);
util.assertMapping(1, 9, '/the/root/one.js', 1, 11, null, null, map, assert);
util.assertMapping(1, 18, '/the/root/one.js', 1, 21, 'bar', null, map, assert);
util.assertMapping(1, 21, '/the/root/one.js', 2, 3, null, null, map, assert);
util.assertMapping(1, 28, '/the/root/one.js', 2, 10, 'baz', null, map, assert);
util.assertMapping(1, 32, '/the/root/one.js', 2, 14, 'bar', null, map, assert);

util.assertMapping(2, 1, '/the/root/two.js', 1, 1, null, null, map, assert);
util.assertMapping(2, 5, '/the/root/two.js', 1, 5, null, null, map, assert);
util.assertMapping(2, 9, '/the/root/two.js', 1, 11, null, null, map, assert);
util.assertMapping(2, 18, '/the/root/two.js', 1, 21, 'n', null, map, assert);
util.assertMapping(2, 21, '/the/root/two.js', 2, 3, null, null, map, assert);
util.assertMapping(2, 28, '/the/root/two.js', 2, 10, 'n', null, map, assert);
};

exports['test mapping tokens fuzzy'] = function (assert) {
var map = new SourceMapConsumer(util.testMap);

Expand Down

0 comments on commit 6f6c256

Please sign in to comment.