Skip to content

Commit 115e1af

Browse files
committed
address PR feedback
1 parent 4e2269a commit 115e1af

6 files changed

Lines changed: 10 additions & 15 deletions

File tree

apps/fluent-tester-81/app.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "DesktopTester",
3-
"displayName": "Desktop Tester",
4-
"singleApp": "desktop-tester",
5-
"components": [{ "appKey": "DesktopTester", "displayName": "Desktop Tester", "slug": "desktop-tester" }],
2+
"name": "FluentTester81",
3+
"displayName": "Fluent Tester 0.81",
4+
"singleApp": "fluent-tester-81",
5+
"components": [{ "appKey": "FluentTester81", "displayName": "Fluent Tester 0.81", "slug": "fluent-tester-81" }],
66
"macos": {
77
"icons": {
88
"primaryIcon": {

apps/fluent-tester-81/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require_relative '../node_modules/react-native-test-app/ios/test_app'
88
# ws_dir.expand_path.to_s == '/'
99
# require "#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb"
1010

11-
workspace 'DesktopTester.xcworkspace'
11+
workspace 'FluentTester81.xcworkspace'
1212

1313
# (pnpm mode)
1414
react_native_path = "#{__dir__}/../node_modules/react-native"

apps/fluent-tester-81/macos/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require_relative '../node_modules/react-native-test-app/macos/test_app'
88
# ws_dir.expand_path.to_s == '/'
99
# require "#{ws_dir}/node_modules/react-native-test-app/macos/test_app.rb"
1010

11-
workspace 'DesktopTester.xcworkspace'
11+
workspace 'FluentTester81.xcworkspace'
1212

1313
# (pnpm mode)
1414
react_native_path = "#{__dir__}/../node_modules/react-native"

apps/fluent-tester-81/macos/Podfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2747,6 +2747,6 @@ SPEC CHECKSUMS:
27472747
SocketRocket: d4aabe649be1e368d1318fdf28a022d714d65748
27482748
Yoga: 6048a55441c73f8e3916a8eac6b83886708c77f9
27492749

2750-
PODFILE CHECKSUM: 10732d08ff54fc2faa0d3502a4f77ba76066a3ca
2750+
PODFILE CHECKSUM: 53199412419d75ae3ba77bc653f5ee45b750088a
27512751

27522752
COCOAPODS: 1.16.2

apps/fluent-tester-81/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"lint-package": "fluentui-scripts lint-package",
1919
"macos": "rnx-cli run --platform macos",
2020
"start": "rnx-cli start",
21-
"windows": "react-native run-windows --arch x64 --sln windows/DesktopTester.sln"
21+
"windows": "react-native run-windows --arch x64 --sln windows/FluentTester81.sln"
2222
},
2323
"dependencies": {
2424
"@types/react": "~19.1.4",
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
import { AppRegistry, LogBox } from 'react-native';
1+
import { AppRegistry } from 'react-native';
22

33
import { FluentTesterApp } from '@fluentui-react-native/tester-core';
44

5-
// When selecting a test page, the test page button might be under the yellowbox,
6-
//so we have to ensure that no yellowboxes are shown on boot that could affect test selection
7-
LogBox.ignoreLogs([/.*deprecated.*/, /.*Platform is not supported.*/]);
8-
9-
console.log('App is', FluentTesterApp);
10-
AppRegistry.registerComponent('DesktopTester', () => FluentTesterApp);
5+
AppRegistry.registerComponent('FluentTester81', () => FluentTesterApp);
116

127
export default FluentTesterApp;

0 commit comments

Comments
 (0)