Skip to content

Commit

Permalink
test: init component tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thenbe committed Jun 29, 2023
1 parent 60cb3e2 commit 70dccd5
Show file tree
Hide file tree
Showing 10 changed files with 264 additions and 20 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ node_modules
!.env.example
vite.config.js.timestamp-*
vite.config.ts.timestamp-*
.cache
test-results
playwright-report
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"svelte": "^3.57.0 || ^4.0.0"
},
"devDependencies": {
"@playwright/test": "^1.31.2",
"@playwright/experimental-ct-svelte": "^1.35.1",
"@playwright/test": "^1.35.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.20.5",
"@sveltejs/package": "^2.1.0",
Expand Down
30 changes: 21 additions & 9 deletions playwright.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,23 @@
import type { PlaywrightTestConfig } from '@playwright/test';
import { defineConfig, devices } from '@playwright/experimental-ct-svelte';

const config: PlaywrightTestConfig = {
webServer: {
command: 'npm run build && npm run preview',
port: 4173
export default defineConfig({
testDir: './tests/components',
timeout: 10 * 1000,
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? [['github'], ['html']] : [['html', { open: 'never' }]],
use: {
trace: 'retain-on-failure',
video: 'retain-on-failure',
ctPort: 3100,
ctTemplateDir: './tests/components/boilerplate'
},
testDir: 'tests'
};

export default config;
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] }
}
]
});
98 changes: 88 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions tests/components/boilerplate/App.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<script lang="ts">
import { onMount } from 'svelte';
import Toaster from '../../../src/lib/components/Toaster.svelte';
import toast from '../../../src/lib/core/toast';
import type { ToastProps } from './types';
export let toastProps: ToastProps;
onMount(() => {
toast(toastProps[0], toastProps[1]);
});
</script>

<Toaster />
6 changes: 6 additions & 0 deletions tests/components/boilerplate/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<html lang="en">
<body>
<div id="root"></div>
<script type="module" src="./index.ts"></script>
</body>
</html>
2 changes: 2 additions & 0 deletions tests/components/boilerplate/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// Apply theme here, add anything your component needs at runtime here.
// import '../src/common.css';
5 changes: 5 additions & 0 deletions tests/components/boilerplate/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type toast from '$lib';
import type { test } from '@playwright/experimental-ct-svelte';

export type Mount = Parameters<Parameters<typeof test>[1]>['0']['mount'];
export type ToastProps = Parameters<typeof toast>;
112 changes: 112 additions & 0 deletions tests/components/direction.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
import { expect, test } from '@playwright/experimental-ct-svelte';
import App from './boilerplate/App.svelte';

test.use({ viewport: { width: 500, height: 500 } });

test.describe('LTR', () => {
test.beforeEach(async ({ page }) => {
await page.evaluate(() => {
document.documentElement.lang = 'en';
document.documentElement.dir = 'ltr';
});
});

test('top-start', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['Hello world!', { position: 'top-start' }] }
});

const toast = component.getByRole('status');
// toast should be top left
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeLessThan(150);
});

test('top-end', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['Hello world!', { position: 'top-end' }] }
});

const toast = component.getByRole('status');
// toast should be top right
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeGreaterThan(350);
});

test('bottom-start', async ({ mount }) => {
const component = await mount(App, {
props: {
toastProps: ['Hello world!', { position: 'bottom-start' }]
}
});

const toast = component.getByRole('status');
// toast should be bottom left
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeLessThan(150);
});

test('bottom-end', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['Hello world!', { position: 'bottom-end' }] }
});

const toast = component.getByRole('status');
// toast should be bottom right
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeGreaterThan(350);
});
});

test.describe('RTL', () => {
test.beforeEach(async ({ page }) => {
await page.evaluate(() => {
document.documentElement.lang = 'ar';
document.documentElement.dir = 'rtl';
});
});

test('top-start', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['مرحبا', { position: 'top-start' }] }
});

const toast = component.getByRole('status');
// toast should be top right
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeGreaterThan(350);
});

test('top-end', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['مرحبا', { position: 'top-end' }] }
});

const toast = component.getByRole('status');
// toast should be top left
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeLessThan(150);
});

test('bottom-start', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['مرحبا', { position: 'bottom-start' }] }
});

const toast = component.getByRole('status');
// toast should be bottom right
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeGreaterThan(350);
});

test('bottom-end', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['مرحبا', { position: 'bottom-end' }] }
});

const toast = component.getByRole('status');
// toast should be bottom left
const toastRect = await toast.boundingBox();
expect(toastRect?.x).toBeLessThan(150);
});
});
11 changes: 11 additions & 0 deletions tests/components/toast.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { expect, test } from '@playwright/experimental-ct-svelte';
import App from './boilerplate/App.svelte';

test.use({ viewport: { width: 500, height: 500 } });

test('should render', async ({ mount }) => {
const component = await mount(App, {
props: { toastProps: ['Hello world!'] }
});
await expect(component.getByText('Hello world!')).toBeVisible();
});

0 comments on commit 70dccd5

Please sign in to comment.