Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release k6chaijs@4.5.0.1 #139

Merged
merged 4 commits into from
Sep 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ <h2>Available libs</h2>
<td><a href="https://k6.io/docs/javascript-api/jslib/expect">https://k6.io/docs/javascript-api/jslib/expect</a></td>
</tr><tr>
<td>k6chaijs</td>
<td><a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.0/index.js">4.3.4.0</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.1/index.js">4.3.4.1</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.2/index.js">4.3.4.2</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.3/index.js">4.3.4.3</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.5.0.0/index.js">4.5.0.0</a></td>
<td><a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.0/index.js">4.3.4.0</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.1/index.js">4.3.4.1</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.2/index.js">4.3.4.2</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.3.4.3/index.js">4.3.4.3</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.5.0.0/index.js">4.5.0.0</a>, <a target="_blank" href="https://jslib.k6.io/k6chaijs/4.5.0.1/index.js">4.5.0.1</a></td>
<td><a href="https://github.com/grafana/k6-jslib-k6chaijs">https://github.com/grafana/k6-jslib-k6chaijs</a></td>
</tr><tr>
<td>k6chaijs-contracts</td>
Expand Down
4 changes: 4 additions & 0 deletions lib/k6chaijs/4.5.0.1/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion supported.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"docs-url": "https://k6.io/docs/javascript-api/jslib/expect"
},
"k6chaijs": {
"versions": ["4.3.4.0", "4.3.4.1", "4.3.4.2", "4.3.4.3", "4.5.0.0"],
"versions": ["4.3.4.0", "4.3.4.1", "4.3.4.2", "4.3.4.3", "4.5.0.0", "4.5.0.1"],
"docs-url": "https://github.com/grafana/k6-jslib-k6chaijs"
},
"k6chaijs-contracts": {
Expand Down
5 changes: 5 additions & 0 deletions tests/k6chai.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { expect as expect4340, describe as describe4340 } from '../lib/k6chaijs/
import { expect as expect4341, describe as describe4341 } from '../lib/k6chaijs/4.3.4.1/index.js'
import { expect as expect4342, describe as describe4342 } from '../lib/k6chaijs/4.3.4.2/index.js'
import { expect as expect4343, describe as describe4343 } from '../lib/k6chaijs/4.3.4.3/index.js'
import { expect as expect4501, describe as describe4501 } from '../lib/k6chaijs/4.5.0.1/index.js'
joanlopez marked this conversation as resolved.
Show resolved Hide resolved

export default function testk6chaijs() {
const expected = 'k6chaijs'
Expand All @@ -22,4 +23,8 @@ export default function testk6chaijs() {
describe4343('k6chaijs v4.3.4.3 test', () => {
expect4343(expected, alias).to.equal(expected)
})

describe4501('k6chaijs v4.5.0.1 test', () => {
expect4501(expected, alias).to.equal(expected)
})
}
Loading