Home
last modified time | relevance | path

Searched refs:filteredModules (Results 1 – 2 of 2) sorted by relevance

/expo/packages/expo-dev-launcher/ios/Tests/
H A DEXDevLauncherRCTBridgeTest.swift25 …let filteredModules = cxxBridge.filterModuleList([RCTAllowModule.self, NotAllowModule.self, ExpoBr… in spec() variable
27 expect(filteredModules.count).to(equal(2)) in spec()
28 expect(filteredModules[0]).to(be(RCTAllowModule.self)) in spec()
29 expect(filteredModules[1]).to(be(ExpoBridgeModuleAbc.self)) in spec()
/expo/packages/expo-dev-menu/ios/Tests/
H A DDevMenuRCTBridgeTest.swift22 let filteredModules = cxxBridge.filterModuleList([RCTAllowModule.self, NotAllowModule.self]) in spec() variable
24 expect(filteredModules.count).to(equal(1)) in spec()
25 expect(filteredModules.first).to(be(RCTAllowModule.self)) in spec()