Skip to content

Commit 6c0d04c

Browse files
committed
test(WebPlatform): disable web components tests on IE
ref dart-archive#1300
1 parent d3f9465 commit 6c0d04c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/core_dom/web_platform_spec.dart

+4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
library angular.dom.platform_spec;
22

33
import '../_specs.dart';
4+
import 'package:browser_detect/browser_detect.dart';
45

56
import 'dart:js' as js;
67

78
main() {
9+
// TODO(vicb) WebPlatform does not work with polyfills
10+
// see https://github.com/angular/angular.dart/issues/1300
11+
if (browser.isIe) return;
812
describe('WebPlatform', () {
913

1014
beforeEachModule((Module module) {

0 commit comments

Comments
 (0)