Skip to content

Commit

Permalink
chore(react-native): fix react native expo nightly e2e test (#19639)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi authored Oct 17, 2023
1 parent aaea8f9 commit 05e814f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/expo/src/expo.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ describe('expo', () => {
afterAll(() => cleanupProject());

it('should test and lint', async () => {
const componentName = uniq('component');
const componentName = uniq('Component');

runCLI(
`generate @nx/expo:component ${componentName} --project=${libName} --export --no-interactive`
Expand Down
4 changes: 2 additions & 2 deletions e2e/react-native/src/react-native.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('react native', () => {
afterAll(() => cleanupProject());

it('should test and lint', async () => {
const componentName = uniq('component');
const componentName = uniq('Component');
runCLI(
`generate @nx/react-native:component ${componentName} --project=${libName} --export --no-interactive`
);
Expand Down Expand Up @@ -165,7 +165,7 @@ describe('react native', () => {
});

it('should build publishable library', async () => {
const componentName = uniq('component');
const componentName = uniq('Component');

runCLI(
`generate @nx/react-native:component ${componentName} --project=${libName} --export`
Expand Down

1 comment on commit 05e814f

@vercel
Copy link

@vercel vercel bot commented on 05e814f Oct 17, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

nx-dev – ./

nx-dev-nrwl.vercel.app
nx-dev-git-master-nrwl.vercel.app
nx-five.vercel.app
nx.dev

Please sign in to comment.