Updated readme with instructions

This commit is contained in:
2024-10-09 19:16:35 -06:00
parent 670cb24095
commit 72d33c21ca
5 changed files with 43 additions and 65 deletions
+1 -9
View File
@@ -8,14 +8,6 @@ class _MockRequestContext extends Mock implements RequestContext {}
void main() {
group('GET /', () {
test('responds with a 200 and "Welcome to Dart Frog!".', () {
// final context = _MockRequestContext();
// final response = route.onRequest(context);
// expect(response.statusCode, equals(HttpStatus.ok));
// expect(
// response.body(),
// completion(equals('Welcome to Dart Frog!')),
// );
});
test('responds with a 200 and "Welcome to Dart Frog!".', () {});
});
}