From 5bdc77e199c5edf988fe45b3d295d30bb9c9a6f4 Mon Sep 17 00:00:00 2001 From: Radek Pietruszewski Date: Sat, 23 Nov 2024 15:36:04 +0100 Subject: [PATCH] temporarily disable jsi tests on android --- src/adapters/sqlite/integrationTest.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/adapters/sqlite/integrationTest.js b/src/adapters/sqlite/integrationTest.js index e4a0dd54c..3d46586d7 100644 --- a/src/adapters/sqlite/integrationTest.js +++ b/src/adapters/sqlite/integrationTest.js @@ -14,7 +14,9 @@ const SQLiteAdapterTest = (spec) => { expectedDispatcherType: 'asynchronous', } : null, - { name: 'SQLiteAdapter (JSI mode)', options: { jsi: true }, expectedDispatcherType: 'jsi' }, + Platform.OS !== 'android' + ? { name: 'SQLiteAdapter (JSI mode)', options: { jsi: true }, expectedDispatcherType: 'jsi' } + : null, ].filter(Boolean) configurations.forEach(({ name: configurationName, options, expectedDispatcherType }) => {