UNPKG
skutter
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Skutter: Opinionated BDD Browser based test framework
github.com/Ashthos/skutter
Ashthos/skutter
skutter
/
dist
/
lib
/
framework
/
messages
/
step-dto.js
9 lines
(8 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
class
StepDTO
{
constructor
(
step
) {
this
.
id
= step.
id
;
this
.
text
= step.
text
; } }
exports
.
StepDTO
=
StepDTO
;