test: expect.not.toBeChecked when no elements match (#9607)

This commit is contained in:
Dmitry Gozman 2021-10-19 09:13:16 -07:00 committed by GitHub
parent 6d554a5e30
commit fc6a93d24e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,14 +58,25 @@ test('should support toBeChecked w/ not', async ({ runInlineTest }) => {
const locator = page.locator('input');
await expect(locator).not.toBeChecked({ timeout: 1000 });
});
test('fail missing', async ({ page }) => {
await page.setContent('<div>no inputs here</div>');
const locator2 = page.locator('input2');
await expect(locator2).not.toBeChecked({ timeout: 1000 });
});
`,
}, { workers: 1 });
const output = stripAscii(result.output);
expect(result.passed).toBe(1);
expect(result.failed).toBe(2);
expect(result.exitCode).toBe(1);
// fail not
expect(output).toContain('Error: expect(received).not.toBeChecked()');
expect(output).toContain('expect(locator).not.toBeChecked');
expect(result.passed).toBe(1);
expect(result.failed).toBe(1);
expect(result.exitCode).toBe(1);
expect(output).toContain('selector resolved to <input checked type="checkbox"/>');
// fail missing
expect(output).toContain('expect(locator2).not.toBeChecked');
expect(output).toContain('waiting for selector "input2"');
});
test('should support toBeEditable, toBeEnabled, toBeDisabled, toBeEmpty', async ({ runInlineTest }) => {