Skip to content

Commit c02729f

Browse files
committed
Apply Prettier config
1 parent 7f4c5a1 commit c02729f

File tree

3 files changed

+43
-37
lines changed

3 files changed

+43
-37
lines changed

.prettierrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"tabWidth": 4,
3+
"semi": true,
4+
"singleQuote": true
5+
}

src/stubs/support/index.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
// https://on.cypress.io/configuration
1414
// ***********************************************************
1515

16-
import './commands'
16+
import './commands';
1717
import './laravel-commands';
1818
import './assertions';
1919

2020
before(() => {
21-
cy.task('activateCypressEnvFile', {}, {log: false});
22-
cy.artisan('config:clear', {}, {log: false});
21+
cy.task('activateCypressEnvFile', {}, { log: false });
22+
cy.artisan('config:clear', {}, { log: false });
2323
});
2424

2525
after(() => {
26-
cy.task('activateLocalEnvFile', {}, {log: false});
27-
cy.artisan('config:clear', {}, {log: false});
26+
cy.task('activateLocalEnvFile', {}, { log: false });
27+
cy.artisan('config:clear', {}, { log: false });
2828
});

src/stubs/support/laravel-commands.js

+33-32
Original file line numberDiff line numberDiff line change
@@ -6,45 +6,45 @@
66
* @example cy.login();
77
* cy.login({ name: 'JohnDoe' });
88
*/
9-
Cypress.Commands.add("login", (attributes = {}) => {
9+
Cypress.Commands.add('login', (attributes = {}) => {
1010
return cy
1111
.csrfToken()
1212
.then((token) => {
1313
return cy.request({
14-
method: "POST",
15-
url: "/__cypress__/login",
14+
method: 'POST',
15+
url: '/__cypress__/login',
1616
body: { attributes, _token: token },
1717
log: false,
1818
});
1919
})
2020
.then(({ body }) => {
2121
Cypress.log({
22-
name: "login",
22+
name: 'login',
2323
message: attributes,
2424
consoleProps: () => ({ user: body }),
2525
});
2626
})
27-
.its("body", { log: false });
27+
.its('body', { log: false });
2828
});
2929

3030
/**
3131
* Logout the current user.
3232
*
3333
* @example cy.logout();
3434
*/
35-
Cypress.Commands.add("logout", () => {
35+
Cypress.Commands.add('logout', () => {
3636
return cy
3737
.csrfToken()
3838
.then((token) => {
3939
return cy.request({
40-
method: "POST",
41-
url: "/__cypress__/logout",
40+
method: 'POST',
41+
url: '/__cypress__/logout',
4242
body: { _token: token },
4343
log: false,
4444
});
4545
})
4646
.then(() => {
47-
Cypress.log({ name: "logout", message: "" });
47+
Cypress.log({ name: 'logout', message: '' });
4848
});
4949
});
5050

@@ -53,14 +53,14 @@ Cypress.Commands.add("logout", () => {
5353
*
5454
* @example cy.csrfToken();
5555
*/
56-
Cypress.Commands.add("csrfToken", () => {
56+
Cypress.Commands.add('csrfToken', () => {
5757
return cy
5858
.request({
59-
method: "GET",
60-
url: "/__cypress__/csrf_token",
59+
method: 'GET',
60+
url: '/__cypress__/csrf_token',
6161
log: false,
6262
})
63-
.its("body", { log: false });
63+
.its('body', { log: false });
6464
});
6565

6666
/**
@@ -74,8 +74,8 @@ Cypress.Commands.add("csrfToken", () => {
7474
* cy.create('App\\User', 2);
7575
* cy.create('App\\User', 2, { active: false });
7676
*/
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') {
7979
attributes = times;
8080
times = 1;
8181
}
@@ -84,20 +84,20 @@ Cypress.Commands.add("create", (model, times = 1, attributes = {}) => {
8484
.csrfToken()
8585
.then((token) => {
8686
return cy.request({
87-
method: "POST",
88-
url: "/__cypress__/factory",
87+
method: 'POST',
88+
url: '/__cypress__/factory',
8989
body: { attributes, model, times, _token: token },
9090
log: false,
9191
});
9292
})
9393
.then((response) => {
9494
Cypress.log({
95-
name: "create",
96-
message: model + (times ? `(${times} times)` : ""),
95+
name: 'create',
96+
message: model + (times ? `(${times} times)` : ''),
9797
consoleProps: () => ({ [model]: response.body }),
9898
});
9999
})
100-
.its("body", { log: false });
100+
.its('body', { log: false });
101101
});
102102

103103
/**
@@ -108,8 +108,8 @@ Cypress.Commands.add("create", (model, times = 1, attributes = {}) => {
108108
* @example cy.refreshDatabase();
109109
* cy.refreshDatabase({ '--drop-views': true });
110110
*/
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);
113113
});
114114

115115
/**
@@ -120,9 +120,9 @@ Cypress.Commands.add("refreshDatabase", (options = {}) => {
120120
* @example cy.seed();
121121
* cy.seed('PlansTableSeeder');
122122
*/
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,
126126
});
127127
});
128128

@@ -131,6 +131,7 @@ Cypress.Commands.add("seed", (seederClass) => {
131131
*
132132
* @param {String} command
133133
* @param {Object} parameters
134+
* @param {Object} options
134135
*
135136
* @example cy.artisan('cache:clear');
136137
*/
@@ -147,8 +148,8 @@ Cypress.Commands.add('artisan', (command, parameters = {}, options = {}) => {
147148

148149
return cy.csrfToken().then((token) => {
149150
return cy.request({
150-
method: "POST",
151-
url: "/__cypress__/artisan",
151+
method: 'POST',
152+
url: '/__cypress__/artisan',
152153
body: { command: command, parameters: parameters, _token: token },
153154
log: false,
154155
});
@@ -163,23 +164,23 @@ Cypress.Commands.add('artisan', (command, parameters = {}, options = {}) => {
163164
* @example cy.php('2 + 2');
164165
* cy.php('App\\User::count()');
165166
*/
166-
Cypress.Commands.add("php", (command) => {
167+
Cypress.Commands.add('php', (command) => {
167168
return cy
168169
.csrfToken()
169170
.then((token) => {
170171
return cy.request({
171-
method: "POST",
172-
url: "/__cypress__/run-php",
172+
method: 'POST',
173+
url: '/__cypress__/run-php',
173174
body: { command: command, _token: token },
174175
log: false,
175176
});
176177
})
177178
.then((response) => {
178179
Cypress.log({
179-
name: "php",
180+
name: 'php',
180181
message: command,
181182
consoleProps: () => ({ result: response.body.result }),
182183
});
183184
})
184-
.its("body.result", { log: false });
185+
.its('body.result', { log: false });
185186
});

0 commit comments

Comments
 (0)