Skip to content
This repository has been archived by the owner. It is now read-only.

Commit ba6af59

Browse files
committed
Fix files formats
1 parent 97df704 commit ba6af59

File tree

9 files changed

+9
-18
lines changed

9 files changed

+9
-18
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,5 @@ deploy:
3232
edge: true
3333
on:
3434
tags: true
35-
skip_cleanup: true
35+
skip_cleanup: true
36+

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Fixed
1111
### Removed
1212

13-
## [1.0.0] - 2019-12-27
13+
## [1.0.0] - 2019-12-28
1414
### Added
1515
- First release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ cy.mocksServerSetSettings({
5757

5858
By default, the client is configured to request to http://localhost:3100/admin, based in the [default options of @mocks-server][mocks-server-options-url]
5959

60-
You can change both the base url of the "@mocks-server", and the base api path of the "@mocks-server/plugin-admin-api" using the `config` method in your project's `cypress/support/commands.js`:
60+
You can change both the base url of the "@mocks-server", and the admin api path of the "@mocks-server/plugin-admin-api" using the `config` method in your project's `cypress/support/commands.js`:
6161

6262
```js
6363
import { config } from "@mocks-server/cypress-commands";

test-e2e/.eslintrc.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,5 @@
66
"parserOptions": {
77
"sourceType": "module"
88
},
9-
"parser": "babel-eslint",
10-
"globals": {
11-
},
12-
"settings": {
13-
"react": {
14-
"pragma": "React",
15-
"version": "^16.7.0"
16-
}
17-
}
9+
"parser": "babel-eslint"
1810
}

test-e2e/app-data-provider/public/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
66
<meta name="theme-color" content="#000000">
7-
<title>App fetch</title>
7+
<title>App data provider</title>
88
<link rel="stylesheet" type="text/css" href="styles.css">
9-
<script src="https://code.jquery.com/jquery-3.4.1.min.js" crossorigin="anonymous"></script>
109
<script src="main.js"></script>
1110
</head>
1211

test-e2e/app-data-provider/public/styles.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ ul li {
4040
font-weight: 600;
4141
text-decoration: underline;
4242
}
43-
43+

test-e2e/app-fetch/public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525
</div>
2626
</div>
2727
</body>
28-
</html>
28+
</html>

test-e2e/app-fetch/public/styles.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,3 @@ ul li {
4040
font-weight: 600;
4141
text-decoration: underline;
4242
}
43-

test-e2e/cypress.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
"MOCKS_ADMIN_API_PATH": "/admin",
66
"MOCKS_URL": "http://localhost:3100"
77
}
8-
}
8+
}

0 commit comments

Comments
 (0)