Files
sdk/pkg/third_party/angular_tests/vm_test.dart
T
blois@google.com 646b97ce6f Merging all of the Angular tests into a single file to cut down on dart2js compile times. Using htmlIndividualConfig to cut down on how many tests are run at a time and to fail individual tests.
Each individual test was taking ~28s locally to compile, now the entire combined test is taking about the same.

This is still disabled overall as the dart2js compilation times are still timing out.

BUG=
R=sigmund@google.com

Review URL: https://codereview.chromium.org//133843003

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31718 260f80e4-7a28-3924-810f-c04153c831b5
2014-01-10 22:54:27 +00:00

30 lines
885 B
Dart

/// auto-generated by update_angular.sh
// Copyright (c) 2014, 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 angular_vm_tests;
import 'package:unittest/compact_vm_config.dart';
import 'package:unittest/unittest.dart';
import '../../../third_party/pkg/angular/test/tools/html_extractor_spec.dart' as test_0;
import '../../../third_party/pkg/angular/test/tools/selector_spec.dart' as test_1;
import '../../../third_party/pkg/angular/test/tools/source_metadata_extractor_spec.dart' as test_2;
main() {
useCompactVMConfiguration();
group('tools/html_extractor', () {
test_0.main();
});
group('tools/selector', () {
test_1.main();
});
group('tools/source_metadata_extractor', () {
test_2.main();
});
}