diff --git a/qase-playwright/README.md b/qase-playwright/README.md index 97d5c73a..ef2985cc 100644 --- a/qase-playwright/README.md +++ b/qase-playwright/README.md @@ -101,24 +101,34 @@ import { qase } from 'playwright-qase-reporter'; describe('Test suite', () => { test('Simple test', () => { qase.id(1); - qase.title('Example of simple test') + qase.title('Example of simple test'); expect(true).toBe(true); }); test('Test with annotated fields', () => { qase.id(2); - qase.fields({ 'severity': 'high', 'priority': 'medium' }) + qase.fields({ 'severity': 'high', 'priority': 'medium' }); expect(true).toBe(true); }); test(qase(2, 'This syntax is still supported'), () => { expect(true).toBe(true); }); - + test('Running, but not reported to Qase', () => { qase.ignore(); expect(true).toBe(true); }); + + test('Test with steps', async () => { + await test.step('Step 1', async () => { + expect(true).toBe(true); + }); + await test.step('Step 2', async () => { + expect(true).toBe(true); + }); + expect(true).toBe(true); + }); }); ```