Skip to content

Commit e05385d

Browse files
committed
fix: ignore tests on browser
1 parent 70eda8b commit e05385d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

googleapis_auth/test/auth_client_signing_extension_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ void main() {
225225
expect(signature, equals(base64Encode([10, 20, 30])));
226226

227227
client.close();
228-
});
228+
}, testOn: 'vm');
229229

230230
test('sign with custom endpoint extracts universe domain', () async {
231231
final baseClient = mockClient(
@@ -268,6 +268,6 @@ void main() {
268268
expect(signature, equals(base64Encode([5, 6, 7])));
269269

270270
client.close();
271-
});
271+
}, testOn: 'vm');
272272
});
273273
}

0 commit comments

Comments
 (0)