Skip to content

Commit 3786e5e

Browse files
Fix typo
1 parent 33f76fb commit 3786e5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cli/__tests__/buildPropsData.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ it('should log verbose messages when run in verbose mode', async () => {
186186
await buildPropsData('/root/', '/config', true)
187187

188188
// Check verbose logging messages
189-
expect(mockConsoleLog).toHaveBeenCalledWith('Begging props data build')
189+
expect(mockConsoleLog).toHaveBeenCalledWith('Beginning props data build')
190190
expect(mockConsoleLog).toHaveBeenCalledWith('Found 2 files to parse')
191191
expect(mockConsoleLog).toHaveBeenCalledWith('Parsing props from files/one')
192192
expect(mockConsoleLog).toHaveBeenCalledWith('Parsing props from files/two')

cli/buildPropsData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export async function buildPropsData(
9494
}
9595
}
9696

97-
verboseModeLog('Begging props data build')
97+
verboseModeLog('Beginning props data build')
9898

9999
const config = await getConfig(configFile)
100100
if (!config) {

0 commit comments

Comments
 (0)