Skip to content

Commit

Permalink
docs: simplify docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ealush committed Jun 17, 2020
1 parent 10ef0fa commit b63362c
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 80 deletions.
51 changes: 0 additions & 51 deletions docs/_assets/stylesheet.css

This file was deleted.

62 changes: 34 additions & 28 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,31 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Vest - Validation Test</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Validation Test">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<link rel="icon" href="./_assets/favicon.ico">
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
<link rel="stylesheet" href="./_assets/stylesheet.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'vest',
logo: '/_assets/logo.png',
repo: 'https://github.com/ealush/vest',
search: 'auto',
loadSidebar: true,
subMaxLevel: 2,
themeColor: '#5BA9D8'
}
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/vest"></script>
<script src="./_assets/index.js"></script>
</body>
<head>
<meta charset="UTF-8" />
<title>Vest - Validation Test</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Validation Test" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<link rel="icon" href="./_assets/favicon.ico" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/docsify-themeable@0/dist/css/theme-simple.css"
/>
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: 'vest',
logo: '/_assets/logo.png',
repo: 'https://github.com/ealush/vest',
search: 'auto',
loadSidebar: true,
subMaxLevel: 2,
themeColor: '#5BA9D8',
};
</script>
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/docsify-themeable@0"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script>
<script src="//unpkg.com/vest"></script>
<script src="./_assets/index.js"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion docs/result.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ resultObject.getErrors();
// }
```

**Note** If you did not specify error messages for your tests, your errors array will be empty as well. In such case you should always rely on `.hasErrors()` instead.
!> **NOTE** If you did not specify error messages for your tests, your errors array will be empty as well. In such case you should always rely on `.hasErrors()` instead.

## `getErrorsByGroup` and `getWarningsByGroup` functions

Expand Down

0 comments on commit b63362c

Please sign in to comment.