Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(caserycrogers): export CharlatanResponseBuilder (MINOR) #31

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/charlatan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export 'src/charlatan_response_definition.dart'
show
CharlatanHttpRequest,
CharlatanHttpResponse,
CharlatanResponseBuilder,
CharlatanRequestMatcher,
charlatanResponse,
requestMatchesAll,
Expand Down
4 changes: 2 additions & 2 deletions lib/src/charlatan.dart
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import 'package:collection/collection.dart';
/// ```
/// {@endtemplate}
class Charlatan {
/// {@nodoc}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was unrecognized and causing CI/CD to fail.

// ignore: public_member_api_docs
bool shouldLogErrors = true;

/// {@nodoc}
// ignore: public_member_api_docs
void silenceErrors() => shouldLogErrors = false;

final List<CharlatanResponseDefinition> _matchers = [];
Expand Down
1 change: 0 additions & 1 deletion lib/src/charlatan_http_client_adapter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@ ${charlatan.toPrettyPrintedString()}
throw UnimplementedError(errorMessage);
}

/// {@nodoc}
@override
void close({bool force = false}) {}
}
Expand Down
Loading