Skip to content

Commit

Permalink
temporarily disable jsi tests on android
Browse files Browse the repository at this point in the history
  • Loading branch information
radex committed Nov 23, 2024
1 parent 985b32d commit 5bdc77e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/adapters/sqlite/integrationTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down

0 comments on commit 5bdc77e

Please sign in to comment.