Skip to content

Commit c73b277

Browse files
author
Krzysztof Wojnar
committed
chore(e2e): widow spaces in e2e code
1 parent f672219 commit c73b277

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/npm-screens-publish-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
node-version: 22
2525
cache: 'yarn'
2626
registry-url: https://registry.npmjs.org/
27-
27+
2828
# Ensure npm 11.5.1 or later is installed for OIDC
2929
- name: Update npm
3030
run: npm install -g npm@latest

Example/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ yarn-error.log
6565

6666
# testing
6767
/coverage
68-
68+
6969
# Yarn
7070
.yarn/*
7171
!.yarn/patches

Example/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ react {
4949
//
5050
// The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map"
5151
// hermesFlags = ["-O", "-output-source-map"]
52-
52+
5353
/* Autolinking */
5454
autolinkLibrariesWithApp()
5555
}

apps/src/tests/Test3265.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export default function TestScrollViewHorizontal() {
1818
<Stack.Screen name='Home' component={(props: { navigation: StackNavigationProps }) => <View>
1919
<Button onPress={() => props.navigation.navigate('ScrollView')} title='Go to ScrollView' />
2020
</View>} />
21-
<Stack.Screen name="ScrollView" component={() =>
21+
<Stack.Screen name="ScrollView" component={() =>
2222
<ScrollView horizontal={ true } >
2323
<View style={{ width: 300 }}>
2424
<Text style={{ fontSize: 48 }}>{ Array.from({ length: 100 }).map( _ => ['🤖', '👨‍💻', '👾'][Math.floor(Math.random() * 3)]).join('')}</Text>

apps/src/tests/Test556.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function Second({ navigation }: ScreenBaseProps) {
100100
});
101101
}}
102102
/>
103-
<Button
103+
<Button
104104
title="Use multiple right items"
105105
onPress={() => {
106106
navigation.setOptions({
@@ -115,7 +115,7 @@ function Second({ navigation }: ScreenBaseProps) {
115115
<Text>Right-2</Text>
116116
</View>
117117
)
118-
},
118+
},
119119
{
120120
customView: () => (
121121
<View
@@ -128,7 +128,7 @@ function Second({ navigation }: ScreenBaseProps) {
128128
)
129129
}
130130
]
131-
})
131+
})
132132
}} />
133133

134134
<Button

apps/src/tests/TestBottomTabsOrientation.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function makeTabConfigs(
7171
ios: {
7272
type: 'sfSymbol',
7373
name: 'house.fill',
74-
},
74+
},
7575
android: {
7676
type: 'imageSource',
7777
imageSource: require('../../assets/variableIcons/icon_fill.png'),
@@ -94,7 +94,7 @@ function makeTabConfigs(
9494
ios: {
9595
type: 'templateSource',
9696
templateSource: require('../../assets/variableIcons/icon.png'),
97-
},
97+
},
9898
android: {
9999
type: 'drawableResource',
100100
name: 'sym_call_missed',

0 commit comments

Comments
 (0)