| Index: packages/source_maps/test/vlq_test.dart
|
| diff --git a/packages/source_maps/test/vlq_test.dart b/packages/source_maps/test/vlq_test.dart
|
| index 0abdc4795c2d99b70736f2994b7ff45dc926e5a5..d1b543da03ac480b2f7dbcd160ff5b7749653847 100644
|
| --- a/packages/source_maps/test/vlq_test.dart
|
| +++ b/packages/source_maps/test/vlq_test.dart
|
| @@ -5,7 +5,7 @@
|
| library test.vlq_test;
|
|
|
| import 'dart:math';
|
| -import 'package:unittest/unittest.dart';
|
| +import 'package:test/test.dart';
|
| import 'package:source_maps/src/vlq.dart';
|
|
|
| main() {
|
| @@ -49,7 +49,9 @@ main() {
|
| expect(() => decodeVlq('igggggE'.split('').iterator), throws);
|
| expect(() => decodeVlq('jgggggE'.split('').iterator), throws);
|
| expect(() => decodeVlq('lgggggE'.split('').iterator), throws);
|
| - });
|
| + },
|
| + // This test uses integers so large they overflow in JS.
|
| + testOn: "dart-vm");
|
| }
|
|
|
| _checkEncodeDecode(int value) {
|
|
|