Skip to content

Commit 86aea94

Browse files
adding rn-tester example chnages
1 parent efabdaa commit 86aea94

File tree

8 files changed

+25
-30
lines changed

8 files changed

+25
-30
lines changed

packages/@office-iss/react-native-win32-tester/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
"engines": {
3838
"node": ">= 22"
3939
}
40-
}
40+
}

packages/@react-native-windows/tester/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"react-native-xaml": "^0.0.80"
2525
},
2626
"devDependencies": {
27-
"@react-native/new-app-screen": "0.84.0-nightly-20260107-58bc6c3e3",
27+
"@react-native/new-app-screen": "0.84.0-rc.5",
2828
"@react-native/tester": "0.84.0-rc.5",
2929
"@rnw-scripts/babel-react-native-config": "0.0.0",
3030
"@rnw-scripts/eslint-config": "1.2.38",
@@ -41,4 +41,4 @@
4141
"engines": {
4242
"node": ">= 22"
4343
}
44-
}
44+
}

packages/@react-native/tester/js/examples/Experimental/W3CPointerEventPlatformTests/PointerEventPointerCancelTouch.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function PointerEventPointerCancelTouchTestCase(
2323
) {
2424
const {harness} = props;
2525

26-
const testPointerEvent = harness.useAsyncTest('pointercancel event received');
26+
const testPointerEvent = harness.useAsyncTest('pointercancel event recieved');
2727

2828
const pointerDownEventRef = useRef<PointerEvent | null>(null);
2929
const pointerCancelEventRef = useRef<PointerEvent | null>(null);
@@ -40,7 +40,7 @@ function PointerEventPointerCancelTouchTestCase(
4040

4141
testPointerEvent.step(({assert_equals, assert_not_equals}) => {
4242
const pointerDownEvent = pointerDownEventRef.current;
43-
assert_not_equals(pointerDownEvent, null, 'pointerdown was received: ');
43+
assert_not_equals(pointerDownEvent, null, 'pointerdown was recieved: ');
4444
if (pointerDownEvent != null) {
4545
assert_equals(
4646
event.nativeEvent.pointerId,
@@ -87,7 +87,7 @@ function PointerEventPointerCancelTouchTestCase(
8787
assert_not_equals(
8888
pointerCancelEvent,
8989
null,
90-
'pointercancel was received: ',
90+
'pointercancel was recieved: ',
9191
);
9292
if (pointerCancelEvent != null) {
9393
assert_equals(
@@ -118,7 +118,7 @@ function PointerEventPointerCancelTouchTestCase(
118118
assert_not_equals(
119119
pointerCancelEvent,
120120
null,
121-
'pointercancel was received: ',
121+
'pointercancel was recieved: ',
122122
);
123123
if (pointerCancelEvent != null) {
124124
assert_equals(

packages/@react-native/tester/js/examples/Experimental/W3CPointerEventPlatformTests/PointerEventPointerOverOut.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function PointerEventPointerOverOutTestCase(
7878
assert_equals(
7979
innerOverRef.current,
8080
innerOutRef.current,
81-
'pointerover is received before pointerout',
81+
'pointerover is recieved before pointerout',
8282
);
8383
switch (innerOverRef.current) {
8484
case 0: {
@@ -144,7 +144,7 @@ function PointerEventPointerOverOutTestCase(
144144
assert_equals(
145145
outerOwnOverRef.current,
146146
outerOwnOutRef.current,
147-
'outer: pointerover is received before pointerout',
147+
'outer: pointerover is recieved before pointerout',
148148
);
149149
outerOwnOverRef.current++;
150150
} else {
@@ -167,7 +167,7 @@ function PointerEventPointerOverOutTestCase(
167167
assert_equals(
168168
outerOwnOverRef.current,
169169
outerOwnOutRef.current + 1,
170-
'outer: pointerout is received after pointerover',
170+
'outer: pointerout is recieved after pointerover',
171171
);
172172
if (outerOwnOutRef.current === 1) {
173173
assert_equals(innerOutRef.current, 2, 'inner should be done now');
@@ -178,7 +178,7 @@ function PointerEventPointerOverOutTestCase(
178178
assert_equals(
179179
outerOutRef.current - outerOwnOutRef.current,
180180
innerOutRef.current - 1,
181-
'pointerout: should only receive this via bubbling',
181+
'pointerout: should only recieve this via bubbling',
182182
);
183183
}
184184
});

packages/@react-native/tester/js/examples/Image/ImageExample.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -936,7 +936,7 @@ exports.examples = [
936936
{
937937
title: 'Multiple Image Source using the `srcSet` prop.',
938938
description:
939-
('A list of comma separated uris along with scale are provided in `srcSet`.' +
939+
('A list of comma seperated uris along with scale are provided in `srcSet`.' +
940940
'An appropriate value will be used based on the scale of the device.': string),
941941
render: function (): React.Node {
942942
return (

packages/@rnw-scripts/eslint-config/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@babel/core": "^7.25.2",
1414
"@babel/eslint-parser": "^7.25.1",
1515
"@microsoft/eslint-plugin-sdl": "^0.2.0",
16-
"@react-native/eslint-config": "0.84.0-nightly-20260107-58bc6c3e3",
16+
"@react-native/eslint-config": "0.84.0-rc.5",
1717
"eslint-config-prettier": "^8.5.0",
1818
"eslint-plugin-ft-flow": "^2.0.1",
1919
"hermes-eslint": "0.23.1"
@@ -29,4 +29,4 @@
2929
"engines": {
3030
"node": ">= 22"
3131
}
32-
}
32+
}

vnext/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"@react-native/community-cli-plugin": "0.84.0-rc.5",
3434
"@react-native/gradle-plugin": "0.84.0-rc.5",
3535
"@react-native/js-polyfills": "0.84.0-rc.5",
36-
"@react-native/new-app-screen": "0.84.0-nightly-20260107-58bc6c3e3",
36+
"@react-native/new-app-screen": "0.84.0-rc.5",
3737
"@react-native/normalize-colors": "0.84.0-rc.5",
3838
"@react-native/virtualized-lists": "0.84.0-rc.5",
3939
"abort-controller": "^3.0.0",
@@ -152,4 +152,4 @@
152152
"engines": {
153153
"node": ">= 22"
154154
}
155-
}
155+
}

yarn.lock

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2703,14 +2703,14 @@
27032703
serve-static "^1.16.2"
27042704
ws "^7.5.10"
27052705

2706-
"@react-native/eslint-config@0.84.0-nightly-20260107-58bc6c3e3":
2707-
version "0.84.0-nightly-20260107-58bc6c3e3"
2708-
resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.84.0-nightly-20260107-58bc6c3e3.tgz#a81a638a373a9a54fca39f84441772886a03cfcf"
2709-
integrity sha512-/ozPX9j3Ke8NGyshnGO0dEMS0eMbF3PPrLnpEUxeYmEboP7jJb41yS83I4wjvBOTZ8u05POx/Fs0gyEVOOGqXg==
2706+
"@react-native/eslint-config@0.84.0-rc.5":
2707+
version "0.84.0-rc.5"
2708+
resolved "https://registry.yarnpkg.com/@react-native/eslint-config/-/eslint-config-0.84.0-rc.5.tgz#b7a351c80b1bc899ce468b81a37bd9095ba9ffc4"
2709+
integrity sha512-S0fymOsye83GhxwgcTvVoJzyLhbt8botVNZlPKdeQn5tZI1dlBK85EGevzkTr56JyZgqU2qZ81mDkQIeSHHM7Q==
27102710
dependencies:
27112711
"@babel/core" "^7.25.2"
27122712
"@babel/eslint-parser" "^7.25.1"
2713-
"@react-native/eslint-plugin" "0.84.0-nightly-20260107-58bc6c3e3"
2713+
"@react-native/eslint-plugin" "0.84.0-rc.5"
27142714
"@typescript-eslint/eslint-plugin" "^8.36.0"
27152715
"@typescript-eslint/parser" "^8.36.0"
27162716
eslint-config-prettier "^8.5.0"
@@ -2721,10 +2721,10 @@
27212721
eslint-plugin-react-hooks "^7.0.1"
27222722
eslint-plugin-react-native "^5.0.0"
27232723

2724-
"@react-native/eslint-plugin@0.84.0-nightly-20260107-58bc6c3e3":
2725-
version "0.84.0-nightly-20260107-58bc6c3e3"
2726-
resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.84.0-nightly-20260107-58bc6c3e3.tgz#3fdbbb04bb201abd644fd98190ed067ce00409ae"
2727-
integrity sha512-qlx8ruM8jyynxOyNhYUJnVrryDbSC4mZ5/L/GUfGUbeP/e0OF1G5hwJA9D284XI9d7VTfXI2gIA/m39wNbsmDw==
2724+
"@react-native/eslint-plugin@0.84.0-rc.5":
2725+
version "0.84.0-rc.5"
2726+
resolved "https://registry.yarnpkg.com/@react-native/eslint-plugin/-/eslint-plugin-0.84.0-rc.5.tgz#dad48dd035a3f915cc0e9185506ff3021de6fad6"
2727+
integrity sha512-tIUBJHQlGPClPLwT7rae5Ey++2A5dP1Psrb7NiqeFATwrZa9X5jMpY9j18Hb2y1i0Rp6bYJtpvB7FH9xqZP4Hw==
27282728

27292729
"@react-native/gradle-plugin@0.84.0-rc.5":
27302730
version "0.84.0-rc.5"
@@ -2761,11 +2761,6 @@
27612761
resolved "https://registry.yarnpkg.com/@react-native/new-app-screen/-/new-app-screen-0.82.0-nightly-20250821-0ef21bf8a.tgz#f7b64f7bd93945bdea0d597d973b11d079bbceb9"
27622762
integrity sha512-IcNqFAgsUTEt/GxJDW7PaoOS2Sn3iTQijnPGCIBkmlo/PBlnOzOZOXT6nz58aVdWYbHVh9+WTuItv/dpeKgzMg==
27632763

2764-
"@react-native/new-app-screen@0.84.0-nightly-20260107-58bc6c3e3":
2765-
version "0.84.0-nightly-20260107-58bc6c3e3"
2766-
resolved "https://registry.yarnpkg.com/@react-native/new-app-screen/-/new-app-screen-0.84.0-nightly-20260107-58bc6c3e3.tgz#34ed680213e7fbde3aadb26075f80e578435caff"
2767-
integrity sha512-nS2fp4nVP0ZfILX7Xdtojn3NkYunyhCrYJ6wTj1twy1+vNhT1fHJyNltbF6V7dFK33TkYTgvQipORA+5PxULkQ==
2768-
27692764
"@react-native/new-app-screen@0.84.0-rc.5":
27702765
version "0.84.0-rc.5"
27712766
resolved "https://registry.yarnpkg.com/@react-native/new-app-screen/-/new-app-screen-0.84.0-rc.5.tgz#e7c9bd82cd3b88c1cdfd42e8c508fa737082d7d1"

0 commit comments

Comments
 (0)