| Index: test/trace_test.dart
|
| diff --git a/test/trace_test.dart b/test/trace_test.dart
|
| index e8f749a22a5fec28780b5eee45f5aef49bfb5454..249e9f6f2c0502dc1bf84da1a7e595075b7f24c3 100644
|
| --- a/test/trace_test.dart
|
| +++ b/test/trace_test.dart
|
| @@ -107,6 +107,17 @@ void main() {
|
| equals(Uri.parse("http://pub.dartlang.org/stuff.js")));
|
| expect(trace.frames[2].uri,
|
| equals(Uri.parse("http://pub.dartlang.org/thing.js")));
|
| +
|
| + trace = new Trace.parse(
|
| + '\tat Foo._bar (http://pub.dartlang.org/stuff.js:42:21)\n'
|
| + '\tat \n'
|
| + '\tat zip.<anonymous>.zap '
|
| + '(http://pub.dartlang.org/thing.js:1:100)');
|
| +
|
| + expect(trace.frames[0].uri,
|
| + equals(Uri.parse("http://pub.dartlang.org/stuff.js")));
|
| + expect(trace.frames[1].uri,
|
| + equals(Uri.parse("http://pub.dartlang.org/thing.js")));
|
| });
|
|
|
| test('parses a Firefox/Safari stack trace correctly', () {
|
|
|