Skip to content

Commit

Permalink
fix tests rn
Browse files Browse the repository at this point in the history
  • Loading branch information
sidmohanty11 committed May 20, 2024
1 parent bc8c6a5 commit 114e190
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/sdks-tests/src/e2e-tests/basic-styles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ test.describe('Basic styles', () => {
page,
sdk,
}) => {
test.fail(checkIsRN(sdk));
await page.goto('/basic-styles', { timeout: 5000 });
test.skip(checkIsRN(sdk));
await page.goto('/basic-styles');

const button = page.getByRole('button', { name: 'Click Me!' });

Expand Down Expand Up @@ -42,7 +42,7 @@ test.describe('Basic styles', () => {
page,
sdk,
}) => {
test.fail(checkIsRN(sdk));
test.skip(checkIsRN(sdk));
const mockImgPath = path.join(mockFolderPath, 'placeholder-img.png');
const mockImgBuffer = fs.readFileSync(mockImgPath);

Expand Down

0 comments on commit 114e190

Please sign in to comment.