-
Notifications
You must be signed in to change notification settings - Fork 58
/
dart_test.yaml
56 lines (49 loc) · 1.73 KB
/
dart_test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Specify chrome and VM as default platforms for running all tests,
# then let the `@TestOn()` annotations determine which suites actually run
platforms:
- chrome
- vm
# Work around process hanging after tests finish: https://github.com/dart-lang/build/issues/3765
concurrency: 1
presets:
vm:
concurrency: 4
paths:
- test/vm_tests/
no-dart-2:
exclude_tags: dart-2-only
dartdevc:
exclude_tags: no-ddc
paths:
- test/over_react_component_declaration_test.dart
- test/over_react_component_declaration_non_null_safe_test.dart
- test/over_react_component_test.dart
- test/over_react_dom_test.dart
- test/over_react_prod_test.dart
- test/over_react_util_test.dart
- test/over_react_redux_test.dart
dart2js:
exclude_tags: ddc
paths:
- test/over_react_component_declaration_test.dart
- test/over_react_component_declaration_non_null_safe_test.dart
- test/over_react_component_test.dart
- test/over_react_dom_test.dart
- test/over_react_prod_test.dart
- test/over_react_util_test.dart
- test/over_react_redux_test.dart
travis:
reporter: expanded
tags:
# Tests that should only run in DDC (Dart Dev Compiler, AKA dartdevc).
ddc: {}
# Tests that should only run in dart2js.
no-ddc: {}
# Tests that can pass in DDC even if something goes wrong;
# these tests must be run in dart2js in order to properly validate behavior.
ddc-false-positive: {}
# Tests that represent a case of undesirable JS interop behavior that's
# either unavoidable or exists as a tradeoff for improved behavior in other cases.
js-interop-tradeoff: {}
# Tests for behavior that's only valid in Dart 2, and does not apply to Dart 3.
dart-2-only: {}