Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change default metro.config.js to utilize inline requires #29770

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/rn-tester/e2e/__tests__/Button-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe('Button', () => {
beforeAll(async () => {
await device.reloadReactNative();
await openComponentWithLabel(
'<Button>',
'<Button> Simple React Native button component.',
'Button',
'Button Simple React Native button component.',
);
});

Expand Down
4 changes: 2 additions & 2 deletions packages/rn-tester/e2e/__tests__/DatePickerIOS-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ describe('DatePickerIOS', () => {
beforeAll(async () => {
await device.reloadReactNative();
await openComponentWithLabel(
'<DatePickerIOS>',
'<DatePickerIOS> Select dates and times using the native UIDatePicker.',
'DatePickerIOS',
'DatePickerIOS Select dates and times using the native UIDatePicker.',
);
});

Expand Down
4 changes: 2 additions & 2 deletions packages/rn-tester/e2e/__tests__/Picker-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe('Picker', () => {
beforeAll(async () => {
await device.reloadReactNative();
await openComponentWithLabel(
'<Picker>',
'<Picker> Provides multiple options to choose from, using either a dropdown menu or a dialog.',
'Picker',
'Picker Provides multiple options to choose from, using either a dropdown menu or a dialog.',
);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/rn-tester/e2e/__tests__/TextInput-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('TextInput', () => {
beforeAll(async () => {
await device.reloadReactNative();
await openComponentWithLabel(
'<TextInput>',
'TextInput',
'Single and multi-line text inputs.',
);
});
Expand Down
4 changes: 2 additions & 2 deletions packages/rn-tester/e2e/__tests__/Touchable-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ describe('Touchable', () => {
beforeAll(async () => {
await device.reloadReactNative();
await openComponentWithLabel(
'<Touchable*',
'<Touchable*> and onPress Touchable and onPress examples.',
'Touchable*',
'Touchable* and onPress Touchable and onPress examples.',
);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/rn-tester/e2e/test-init.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/* global device */

const detox = require('detox');
const config = require('../../package.json').detox;
const config = require('../../../package.json').detox;
const adapter = require('detox/runners/jest/adapter');
jest.setTimeout(120000);
jasmine.getEnv().addReporter(adapter);
Expand Down
Loading