UNPKG
cypress-time
Version:
latest (1.0.0)
1.0.0
Record timings in Cypress
github.com/NicholasBoll/cypress-time
NicholasBoll/cypress-time
cypress-time
/
cypress
/
integration
/
time.spec.js
13 lines
(11 loc)
•
273 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/// <reference types=
"cypress"
/> /// <reference
path
=
"../../index.d.ts"
/> describe(
'time'
, () => { it(
'should show timings'
, () => { cy.
time
(
'test'
) cy.
wrap
(
'foo'
).wait(
300
) cy.timeEnd(
'test'
) .its(
'duration'
) .should(
'be.a'
,
'number'
) }) })