@@ -20,28 +20,30 @@ const List defaultAfterFunctional = const [];
2020const List defaultBeforeFunctional = const [];
2121const int defaultConcurrency = 4 ;
2222const bool defaultDeleteConflictingOutputs = false ;
23- const bool defaultPauseAfterLoad = false ;
24- const bool defaultPubServe = false ;
2523const bool defaultDisableServeStdOut = false ;
26- const int defaultPubServePort = 0 ;
27- const bool defaultIntegration = false ;
2824const bool defaultFunctional = false ;
25+ const List <String > defaultFunctionalTests = const [];
26+ const bool defaultIntegration = false ;
2927const List <String > defaultIntegrationTests = const [];
28+ const bool defaultPauseAfterLoad = false ;
29+ const List <String > defaultPlatforms = const [];
30+ const bool defaultPubServe = false ;
31+ const int defaultPubServePort = 0 ;
32+ const bool defaultRelease = false ;
3033const bool defaultUnit = true ;
3134const List <String > defaultUnitTests = const ['test/' ];
32- const List <String > defaultFunctionalTests = const [];
33- const List <String > defaultPlatforms = const [];
3435
3536class TestConfig extends TaskConfig {
3637 List afterFunctionalTests = defaultAfterFunctional;
3738 List beforeFunctionalTests = defaultBeforeFunctional;
3839 int concurrency = defaultConcurrency;
3940 bool deleteConflictingOutputs = defaultDeleteConflictingOutputs;
41+ bool disableServeStdOut = defaultDisableServeStdOut;
4042 List <String > functionalTests = defaultFunctionalTests;
4143 List <String > integrationTests = defaultIntegrationTests;
4244 List <String > platforms = defaultPlatforms;
4345 bool pubServe = defaultPubServe;
4446 int pubServePort = defaultPubServePort;
45- bool disableServeStdOut = defaultDisableServeStdOut ;
47+ bool release = defaultRelease ;
4648 List <String > unitTests = defaultUnitTests;
4749}
0 commit comments