File tree 2 files changed +3
-5
lines changed
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ dependencies:
16
16
path : ^1.3.2
17
17
source_gen : ^0.7.1
18
18
dev_dependencies :
19
- build_runner : ^0.6.0
19
+ build_runner : ^0.6.0+1
20
20
build_test : ^0.9.0
21
21
collection : ^1.14.0
22
22
dart_style : ^1.0.0
Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ void main() {
25
25
26
26
test ('ensure local build succeeds with no changes' , () {
27
27
// 1 - get a list of modified `.g.dart` files - should be empty
28
- // expect(_changedGeneratedFiles(), isEmpty);
28
+ expect (_changedGeneratedFiles (), isEmpty);
29
29
30
30
// 2 - run build - should be no output, since nothing should change
31
- // TODO(kevmoo): run checked after github.com/dart-lang/build/issues/566
32
- // is fixed
33
- var result = _runProc ('dart' , ['tool/build.dart' ]);
31
+ var result = _runProc ('dart' , ['--checked' , 'tool/build.dart' ]);
34
32
expect (result,
35
33
contains (new RegExp (r'Build: Succeeded after \S+ with \d+ outputs' )));
36
34
You can’t perform that action at this time.
0 commit comments