UNPKG
cypress-junit-reporter
Version:
latest (1.3.1)
1.3.1
1.3.0
A JUnit reporter for mocha.
github.com/DKnA/cypress-junit-reporter
DKnA/cypress-junit-reporter
cypress-junit-reporter
/
test
/
helpers
/
mock-test.js
13 lines
(10 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
'use strict'
;
function
Test
(
fullTitle, title, duration
) {
return
{
title
: title,
duration
: duration,
fullTitle
:
function
(
) {
return
fullTitle; },
slow
:
function
(
) {} }; }
module
.
exports
=
Test
;