Skip to content

Commit

Permalink
chore: update doc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan-Nelson committed Apr 12, 2024
1 parent 9b8cbf7 commit e2e2ea4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import 'tear_down.dart';
/// Creates a new user and signs them in.
///
/// Returns the users identityId.
///
/// A tear down will be added to delete the user after the test completes.
Future<String> signInNewUser() async {
addTearDownCurrentUser();
final username = 'test-user-1-${uuid()}';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ void addTearDownPath(StoragePath path) {
);
}

/// Adds a tear down to delete the current user.
void addTearDownCurrentUser() {
addTearDown(() {
try {
Expand Down

0 comments on commit e2e2ea4

Please sign in to comment.