Skip to content

Commit

Permalink
test(firestore): fix firestore web wasm e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Sep 10, 2024
1 parent 6194f09 commit 68ba7d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ part of cloud_firestore;

// ignore: do_not_use_environment
const kIsWasm = bool.fromEnvironment('dart.library.js_interop') &&
// html package is not available in wasm
// ignore: do_not_use_environment
bool.fromEnvironment('dart.library.ffi');
!bool.fromEnvironment('dart.library.html');

class _CodecUtility {
static Map<String, dynamic>? replaceValueWithDelegatesInMap(
Expand Down

0 comments on commit 68ba7d7

Please sign in to comment.