6
6
* @example cy.login();
7
7
* cy.login({ name: 'JohnDoe' });
8
8
*/
9
- Cypress . Commands . add ( " login" , ( attributes = { } ) => {
9
+ Cypress . Commands . add ( ' login' , ( attributes = { } ) => {
10
10
return cy
11
11
. csrfToken ( )
12
12
. then ( ( token ) => {
13
13
return cy . request ( {
14
- method : " POST" ,
15
- url : " /__cypress__/login" ,
14
+ method : ' POST' ,
15
+ url : ' /__cypress__/login' ,
16
16
body : { attributes, _token : token } ,
17
17
log : false ,
18
18
} ) ;
19
19
} )
20
20
. then ( ( { body } ) => {
21
21
Cypress . log ( {
22
- name : " login" ,
22
+ name : ' login' ,
23
23
message : attributes ,
24
24
consoleProps : ( ) => ( { user : body } ) ,
25
25
} ) ;
26
26
} )
27
- . its ( " body" , { log : false } ) ;
27
+ . its ( ' body' , { log : false } ) ;
28
28
} ) ;
29
29
30
30
/**
31
31
* Logout the current user.
32
32
*
33
33
* @example cy.logout();
34
34
*/
35
- Cypress . Commands . add ( " logout" , ( ) => {
35
+ Cypress . Commands . add ( ' logout' , ( ) => {
36
36
return cy
37
37
. csrfToken ( )
38
38
. then ( ( token ) => {
39
39
return cy . request ( {
40
- method : " POST" ,
41
- url : " /__cypress__/logout" ,
40
+ method : ' POST' ,
41
+ url : ' /__cypress__/logout' ,
42
42
body : { _token : token } ,
43
43
log : false ,
44
44
} ) ;
45
45
} )
46
46
. then ( ( ) => {
47
- Cypress . log ( { name : " logout" , message : "" } ) ;
47
+ Cypress . log ( { name : ' logout' , message : '' } ) ;
48
48
} ) ;
49
49
} ) ;
50
50
@@ -53,14 +53,14 @@ Cypress.Commands.add("logout", () => {
53
53
*
54
54
* @example cy.csrfToken();
55
55
*/
56
- Cypress . Commands . add ( " csrfToken" , ( ) => {
56
+ Cypress . Commands . add ( ' csrfToken' , ( ) => {
57
57
return cy
58
58
. request ( {
59
- method : " GET" ,
60
- url : " /__cypress__/csrf_token" ,
59
+ method : ' GET' ,
60
+ url : ' /__cypress__/csrf_token' ,
61
61
log : false ,
62
62
} )
63
- . its ( " body" , { log : false } ) ;
63
+ . its ( ' body' , { log : false } ) ;
64
64
} ) ;
65
65
66
66
/**
@@ -74,8 +74,8 @@ Cypress.Commands.add("csrfToken", () => {
74
74
* cy.create('App\\User', 2);
75
75
* cy.create('App\\User', 2, { active: false });
76
76
*/
77
- Cypress . Commands . add ( " create" , ( model , times = 1 , attributes = { } ) => {
78
- if ( typeof times === " object" ) {
77
+ Cypress . Commands . add ( ' create' , ( model , times = 1 , attributes = { } ) => {
78
+ if ( typeof times === ' object' ) {
79
79
attributes = times ;
80
80
times = 1 ;
81
81
}
@@ -84,20 +84,20 @@ Cypress.Commands.add("create", (model, times = 1, attributes = {}) => {
84
84
. csrfToken ( )
85
85
. then ( ( token ) => {
86
86
return cy . request ( {
87
- method : " POST" ,
88
- url : " /__cypress__/factory" ,
87
+ method : ' POST' ,
88
+ url : ' /__cypress__/factory' ,
89
89
body : { attributes, model, times, _token : token } ,
90
90
log : false ,
91
91
} ) ;
92
92
} )
93
93
. then ( ( response ) => {
94
94
Cypress . log ( {
95
- name : " create" ,
96
- message : model + ( times ? `(${ times } times)` : "" ) ,
95
+ name : ' create' ,
96
+ message : model + ( times ? `(${ times } times)` : '' ) ,
97
97
consoleProps : ( ) => ( { [ model ] : response . body } ) ,
98
98
} ) ;
99
99
} )
100
- . its ( " body" , { log : false } ) ;
100
+ . its ( ' body' , { log : false } ) ;
101
101
} ) ;
102
102
103
103
/**
@@ -108,8 +108,8 @@ Cypress.Commands.add("create", (model, times = 1, attributes = {}) => {
108
108
* @example cy.refreshDatabase();
109
109
* cy.refreshDatabase({ '--drop-views': true });
110
110
*/
111
- Cypress . Commands . add ( " refreshDatabase" , ( options = { } ) => {
112
- return cy . artisan ( " migrate:fresh" , options ) ;
111
+ Cypress . Commands . add ( ' refreshDatabase' , ( options = { } ) => {
112
+ return cy . artisan ( ' migrate:fresh' , options ) ;
113
113
} ) ;
114
114
115
115
/**
@@ -120,9 +120,9 @@ Cypress.Commands.add("refreshDatabase", (options = {}) => {
120
120
* @example cy.seed();
121
121
* cy.seed('PlansTableSeeder');
122
122
*/
123
- Cypress . Commands . add ( " seed" , ( seederClass ) => {
124
- return cy . artisan ( " db:seed" , {
125
- " --class" : seederClass ,
123
+ Cypress . Commands . add ( ' seed' , ( seederClass ) => {
124
+ return cy . artisan ( ' db:seed' , {
125
+ ' --class' : seederClass ,
126
126
} ) ;
127
127
} ) ;
128
128
@@ -131,6 +131,7 @@ Cypress.Commands.add("seed", (seederClass) => {
131
131
*
132
132
* @param {String } command
133
133
* @param {Object } parameters
134
+ * @param {Object } options
134
135
*
135
136
* @example cy.artisan('cache:clear');
136
137
*/
@@ -147,8 +148,8 @@ Cypress.Commands.add('artisan', (command, parameters = {}, options = {}) => {
147
148
148
149
return cy . csrfToken ( ) . then ( ( token ) => {
149
150
return cy . request ( {
150
- method : " POST" ,
151
- url : " /__cypress__/artisan" ,
151
+ method : ' POST' ,
152
+ url : ' /__cypress__/artisan' ,
152
153
body : { command : command , parameters : parameters , _token : token } ,
153
154
log : false ,
154
155
} ) ;
@@ -163,23 +164,23 @@ Cypress.Commands.add('artisan', (command, parameters = {}, options = {}) => {
163
164
* @example cy.php('2 + 2');
164
165
* cy.php('App\\User::count()');
165
166
*/
166
- Cypress . Commands . add ( " php" , ( command ) => {
167
+ Cypress . Commands . add ( ' php' , ( command ) => {
167
168
return cy
168
169
. csrfToken ( )
169
170
. then ( ( token ) => {
170
171
return cy . request ( {
171
- method : " POST" ,
172
- url : " /__cypress__/run-php" ,
172
+ method : ' POST' ,
173
+ url : ' /__cypress__/run-php' ,
173
174
body : { command : command , _token : token } ,
174
175
log : false ,
175
176
} ) ;
176
177
} )
177
178
. then ( ( response ) => {
178
179
Cypress . log ( {
179
- name : " php" ,
180
+ name : ' php' ,
180
181
message : command ,
181
182
consoleProps : ( ) => ( { result : response . body . result } ) ,
182
183
} ) ;
183
184
} )
184
- . its ( " body.result" , { log : false } ) ;
185
+ . its ( ' body.result' , { log : false } ) ;
185
186
} ) ;
0 commit comments