We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3b2f1 commit 523711aCopy full SHA for 523711a
lib/src/pact_mock_service.dart
@@ -57,7 +57,12 @@ class PactMockService {
57
58
/// Sends the Pact Handle to the a newly created "Mock Server"
59
/// so that the interactions can be mocked
60
- void run({bool secure = true}) {
+ void run({bool secure = false}) {
61
+ if (secure) {
62
+ log.warning(
63
+ 'Secure is currently no longer supported. https://github.com/matthewshirley/pact_dart/issues/6');
64
+ }
65
+
66
if (interactions.isEmpty) {
67
throw NoInteractionsError();
68
}
0 commit comments