From 40dde149000fc0d65457144070656e0260ee2869 Mon Sep 17 00:00:00 2001 From: Asaf Korem Date: Tue, 31 Dec 2024 19:20:24 +0200 Subject: [PATCH] test: fix test text matcher. --- detox/test/e2e/08.stress-root.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detox/test/e2e/08.stress-root.test.js b/detox/test/e2e/08.stress-root.test.js index 8e5113922c..277da273b2 100644 --- a/detox/test/e2e/08.stress-root.test.js +++ b/detox/test/e2e/08.stress-root.test.js @@ -10,7 +10,7 @@ describe('StressRoot', () => { it('should switch root view controller from RN to native', async () => { await element(by.text('Switch to a new native root')).tap(); - await expect(element(by.text('this is a new native root'))).toBeVisible(); + await expect(element(by.text('This is a new native root'))).toBeVisible(); }); it(':ios: should switch root view controller from RN to RN', async () => {