diff --git a/examples/react-native/legacy/__tests__/js/realm-database/schemas/dictionary-test.jsx b/examples/react-native/legacy/__tests__/js/realm-database/schemas/dictionary-test.jsx index d7b5eef88d..a505e43bc9 100644 --- a/examples/react-native/legacy/__tests__/js/realm-database/schemas/dictionary-test.jsx +++ b/examples/react-native/legacy/__tests__/js/realm-database/schemas/dictionary-test.jsx @@ -67,7 +67,7 @@ describe('Dictionary Tests', () => { // run the `.filtered()` method on all the returned homeOwners to // find the house with the address "Summerhill St." const summerHillHouse = useQuery(HomeOwner, homeOwners => { - return homeOwner.filtered('home["address"] = "Summerhill St."'); + return homeOwners.filtered('home["address"] = "Summerhill St."'); })[0].home; // run the `.filtered()` method on all the returned homeOwners to diff --git a/examples/react-native/legacy/package.json b/examples/react-native/legacy/package.json index c81ff50b48..622b512058 100644 --- a/examples/react-native/legacy/package.json +++ b/examples/react-native/legacy/package.json @@ -6,7 +6,7 @@ "android": "react-native run-android", "ios": "react-native run-ios", "start": "react-native start", - "test": "jest --onlyChanged --runInBand --forceExit ", + "test": "jest --runInBand --forceExit ", "test:all": "jest --runInBand --forceExit ", "lint": "eslint --fix __tests__/ --ext .js,.jsx,.ts,.tsx", "prettier": "prettier --write __tests__/*", diff --git a/source/examples/generated/react-native/js/dictionary-test.snippet.query-objects-with-dictionary.jsx b/source/examples/generated/react-native/js/dictionary-test.snippet.query-objects-with-dictionary.jsx index 081b8f4285..7e9c04178c 100644 --- a/source/examples/generated/react-native/js/dictionary-test.snippet.query-objects-with-dictionary.jsx +++ b/source/examples/generated/react-native/js/dictionary-test.snippet.query-objects-with-dictionary.jsx @@ -11,7 +11,7 @@ const HomeList = () => { // run the `.filtered()` method on all the returned homeOwners to // find the house with the address "Summerhill St." const summerHillHouse = useQuery(HomeOwner, homeOwners => { - return homeOwner.filtered('home["address"] = "Summerhill St."'); + return homeOwners.filtered('home["address"] = "Summerhill St."'); })[0].home; // run the `.filtered()` method on all the returned homeOwners to