| Index: pkg/code_transformers/test/remove_sourcemap_comment_test.dart
|
| diff --git a/pkg/code_transformers/test/remove_sourcemap_comment_test.dart b/pkg/code_transformers/test/remove_sourcemap_comment_test.dart
|
| deleted file mode 100644
|
| index 6a9720d13c2d4e03dc91c1ad8c47d5bb025290ac..0000000000000000000000000000000000000000
|
| --- a/pkg/code_transformers/test/remove_sourcemap_comment_test.dart
|
| +++ /dev/null
|
| @@ -1,27 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -library code_transformers.test.remove_sourcemap_comment_test;
|
| -
|
| -import 'package:barback/barback.dart';
|
| -import 'package:code_transformers/src/remove_sourcemap_comment.dart';
|
| -import 'package:code_transformers/tests.dart';
|
| -import 'package:unittest/compact_vm_config.dart';
|
| -import 'package:unittest/unittest.dart';
|
| -
|
| -final phases = [[new RemoveSourcemapComment.asPlugin(
|
| - new BarbackSettings({}, BarbackMode.RELEASE))]];
|
| -
|
| -void main() {
|
| - useCompactVMConfiguration();
|
| -
|
| - testPhases('removes sourcemap comments', phases, {
|
| - 'a|web/test.js': '''
|
| - var i = 0;
|
| - //# sourceMappingURL=*.map''',
|
| - }, {
|
| - 'a|web/test.js': '''
|
| - var i = 0;''',
|
| - });
|
| -}
|
|
|