platform/test/browser.dart

12 lines
259 B
Dart
Raw Normal View History

2016-06-25 18:37:49 +00:00
import 'package:angel_client/browser.dart';
import 'package:test/test.dart';
main() async {
2016-09-03 12:02:32 +00:00
test("list todos", () async {
Angel app = new Rest("http://localhost:3001");
Service Todos = app.service("todos");
2016-06-25 18:37:49 +00:00
2016-09-03 12:02:32 +00:00
print(await Todos.index());
});
}