Update a few dependencies, update ospec to version 3.1.0 (#2370)

This commit is contained in:
Isiah Meadows 2019-02-05 13:20:55 -05:00 committed by GitHub
parent 02844a0b89
commit 99a61a09dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 907 additions and 596 deletions

View file

@ -12,7 +12,7 @@ h1,h2,h3,h4,h5,h6,p {margin:0 0 10px;}
</head>
<body>
<div id="editor"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.3.2/marked.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.6.0/marked.min.js"></script>
<script src="../../mithril.js"></script>
<script>
//model

View file

@ -2,11 +2,15 @@
## Upcoming...
_2018-xx-yy_
_2019-xx-yy_
## 3.1.0
_2019-02-05_
- ospec: Test results now include `.message` and `.context` regardless of whether the test passed or failed. (#2227 @robertakarobin)
<!-- Add new lines here. Version number will be decided later -->
- Add `spy.calls` array property to get the `this` and `arguments` values for any arbitrary call.
- Add `spy.calls` array property to get the `this` and `arguments` values for any arbitrary call. (#2221 @isiahmeadows)
- Added `.throws` and `.notThrows` assertions to ospec. (#2255 @robertakarobin)
- Update `glob` dependency.
## 3.0.1
_2018-06-30_

View file

@ -1,6 +1,6 @@
{
"name": "ospec",
"version": "3.0.1",
"version": "3.1.0",
"description": "Noiseless testing framework",
"main": "ospec.js",
"module": "ospec.mjs",
@ -18,6 +18,6 @@
},
"repository": "MithrilJS/mithril.js",
"dependencies": {
"glob": "^7.1.2"
"glob": "^7.1.3"
}
}

1478
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -32,15 +32,14 @@
"benchmark": "^2.1.4",
"chokidar": "^2.0.4",
"dedent": "^0.7.0",
"eslint": "^5.9.0",
"gh-pages": "^0.12.0",
"glob": "^7.1.2",
"eslint": "^5.13.0",
"gh-pages": "^2.0.1",
"istanbul": "^0.4.5",
"lint-staged": "^4.0.4",
"lint-staged": "^8.1.3",
"locater": "^1.3.0",
"marked": "^0.3.19",
"marked": "^0.6.0",
"pinpoint": "^1.1.0",
"terser": "^3.10.11"
"terser": "^3.16.1"
},
"bin": {
"ospec": "./ospec/bin/ospec"