Skip to content

Commit

Permalink
Apply linting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
builderio-bot committed Dec 9, 2024
1 parent 308cb2a commit 0451906
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions packages/sdks-tests/src/snippet-tests/custom-child.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@ import { test } from '../helpers/index.js';

test.describe('Div with Hero class, and text', () => {
test('should render the page without 404', async ({ page, packageName }) => {
test.skip(!['react', 'angular', 'angular-ssr', 'gen1-remix', 'gen1-react'].includes(packageName));
test.skip(
!['react', 'angular', 'angular-ssr', 'gen1-remix', 'gen1-react'].includes(packageName)
);

const response = await page.goto('/custom-child');
expect(response?.status()).toBeLessThan(400);
});

test('should verify builder-block with specific text', async ({ page, packageName }) => {
test.skip(!['react', 'angular', 'angular-ssr', 'gen1-remix', 'gen1-react'].includes(packageName));
test.skip(
!['react', 'angular', 'angular-ssr', 'gen1-remix', 'gen1-react'].includes(packageName)
);

await page.goto('/custom-child');

Expand Down

0 comments on commit 0451906

Please sign in to comment.