diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c1fa45..a472c0b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -55,6 +55,6 @@ jobs: flutter pub publish --dry-run - name: Publish Package - if: github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, 'release') + if: contains(github.event.head_commit.message, 'release') run: | yes | flutter pub publish diff --git a/example/SampleProject/integration_test/test_play.dart b/example/SampleProject/integration_test/test_play.dart index dfe02c0..7569eac 100644 --- a/example/SampleProject/integration_test/test_play.dart +++ b/example/SampleProject/integration_test/test_play.dart @@ -24,7 +24,7 @@ void main() { // Enter Room ID and tap OK. await enterRoomId(tester, '24x7test'); - await tester.pumpAndSettle(const Duration(seconds: 30)); + await tester.pumpAndSettle(const Duration(seconds: 60)); // Verify the content of the SnackBar. final callEndIcon = find.byIcon(Icons.call_end);