Skip to content
Snippets Groups Projects
Commit 4583da61 authored by Markin Igor's avatar Markin Igor
Browse files

Use git link for flutter_web_browser

parent 4e213575
No related branches found
No related tags found
1 merge request!1Mobile app initial implementation.
flutter_web_browser @ 4a4ca607
Subproject commit 4a4ca60794496b2dbf5bf7eb1f345038619b7855
......@@ -48,4 +48,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 097b64e1c00903a097fa4231dd174c10dfb3b629
COCOAPODS: 1.7.4
COCOAPODS: 1.7.5
......@@ -91,9 +91,11 @@ packages:
flutter_web_browser:
dependency: "direct main"
description:
path: "deps/flutter_web_browser"
relative: true
source: path
path: "."
ref: HEAD
resolved-ref: "5d169abf4fb4cb994c26173d5a7a3dd13b6921a2"
url: "git@github.com:markin-io/flutter_web_browser.git"
source: git
version: "0.11.0"
http:
dependency: "direct main"
......
......@@ -24,7 +24,7 @@ dependencies:
cupertino_icons: ^0.1.2
flutter_web_browser:
# Use
path: ./deps/flutter_web_browser
git: git@github.com:markin-io/flutter_web_browser.git
uni_links: 0.2.0
http: ^0.12.0
flutter_app_auth_wrapper: ^0.1.1+3
......
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
// utility that Flutter provides. For example, you can send tap and scroll
// gestures. You can also use WidgetTester to find child widgets in the widget
// tree, read text, and verify that the values of widget properties are correct.
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mobile_app/main.dart';
void main() {
testWidgets('Counter increments smoke test', (WidgetTester tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(MyApp());
// Verify that our counter starts at 0.
expect(find.text('0'), findsOneWidget);
expect(find.text('1'), findsNothing);
// Tap the '+' icon and trigger a frame.
await tester.tap(find.byIcon(Icons.add));
await tester.pump();
// Verify that our counter has incremented.
expect(find.text('0'), findsNothing);
expect(find.text('1'), findsOneWidget);
});
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment