Skip to content

Commit 14b829b

Browse files
committed
Tests
1 parent a32f8c8 commit 14b829b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

test_driver/all_it_test.dart

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import 'login_it_test.dart' as login;
21
import 'clients_it_test.dart' as clients;
32
import 'invoices_it_test.dart' as invoices;
3+
import 'login_it_test.dart' as login;
44
import 'products_it_test.dart' as products;
55
import 'quotes_it_test.dart' as quotes;
66
import 'vendors_it_test.dart' as vendors;
77

88
void main() {
9-
//login.main();
10-
//products.runTestSuite(batchMode: true);
11-
//clients.runTestSuite(batchMode: true);
9+
login.main();
10+
products.runTestSuite(batchMode: true);
11+
clients.runTestSuite(batchMode: true);
1212
invoices.runTestSuite(batchMode: true);
13-
//quotes.runTestSuite(batchMode: true);
14-
//vendors.runTestSuite(batchMode: true);
13+
quotes.runTestSuite(batchMode: true);
14+
vendors.runTestSuite(batchMode: true);
1515
}

0 commit comments

Comments
 (0)