fix types in other test
This commit is contained in:
parent
4cdf5b782d
commit
3c5d9d11ff
|
|
@ -176,7 +176,9 @@ test('should support .not predicate', async ({ runInlineTest }) => {
|
||||||
test('should support custom matchers', async ({ runInlineTest }) => {
|
test('should support custom matchers', async ({ runInlineTest }) => {
|
||||||
const result = await runInlineTest({
|
const result = await runInlineTest({
|
||||||
'a.spec.ts': `
|
'a.spec.ts': `
|
||||||
expect.extend({
|
import { test, expect as baseExpect } from '@playwright/test';
|
||||||
|
|
||||||
|
const expect = baseExpect.extend({
|
||||||
toBeWithinRange(received, floor, ceiling) {
|
toBeWithinRange(received, floor, ceiling) {
|
||||||
const pass = received >= floor && received <= ceiling;
|
const pass = received >= floor && received <= ceiling;
|
||||||
if (pass) {
|
if (pass) {
|
||||||
|
|
@ -195,10 +197,9 @@ test('should support custom matchers', async ({ runInlineTest }) => {
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
import { test, expect } from '@playwright/test';
|
|
||||||
test('should poll', async () => {
|
test('should poll', async () => {
|
||||||
let i = 0;
|
let i = 0;
|
||||||
await test.expect.poll(() => ++i).toBeWithinRange(3, Number.MAX_VALUE);
|
await expect.poll(() => ++i).toBeWithinRange(3, Number.MAX_VALUE);
|
||||||
});
|
});
|
||||||
`
|
`
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue