From 57cf730d6b225e13a7403e6e932b3cb03418d075 Mon Sep 17 00:00:00 2001 From: David Buchan-Swanson Date: Tue, 14 Oct 2025 21:14:59 +1100 Subject: [PATCH] add react-native library module the current system does not support react native, which means that some rules (like `no-node-access`) never work with react native. it's possible to set a custom module, but only one of them, so I can't set our actual custom module and `@testing-library/react-native`. Signed-off-by: David Buchan-Swanson --- lib/utils/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/utils/index.ts b/lib/utils/index.ts index faa97c51..6a84f5be 100644 --- a/lib/utils/index.ts +++ b/lib/utils/index.ts @@ -25,6 +25,7 @@ const LIBRARY_MODULES = [ '@testing-library/dom', '@testing-library/angular', '@testing-library/react', + '@testing-library/react-native', '@testing-library/preact', '@testing-library/vue', '@testing-library/svelte',