feat(new-tool): yaml and json converters

This commit is contained in:
Corentin Thomasset 2023-04-10 17:34:58 +02:00 committed by Corentin THOMASSET
parent 05f06f6a07
commit c0a89131dd
9 changed files with 149 additions and 1 deletions

View file

@ -0,0 +1,31 @@
import { test, expect } from '@playwright/test';
test.describe('Tool - Yaml to json', () => {
test.beforeEach(async ({ page }) => {
await page.goto('/yaml-to-json-converter');
});
test('Has correct title', async ({ page }) => {
await expect(page).toHaveTitle('YAML to JSON converter - IT Tools');
});
test('Yaml is parsed and output clean json', async ({ page }) => {
await page.getByTestId('input').fill('foo: bar\nlist:\n - item\n - key: value');
const generatedJson = await page.getByTestId('area-content').innerText();
expect(generatedJson.trim()).toEqual(
`
{
"foo": "bar",
"list": [
"item",
{
"key": "value"
}
]
}
`.trim(),
);
});
});