We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04cba93 commit c33cf63Copy full SHA for c33cf63
lib/chai.js
@@ -15,12 +15,6 @@ import {assert} from './chai/interface/assert.js';
15
16
const used = [];
17
18
-/*!
19
- * Chai version
20
- */
21
-
22
-export const version = '4.3.3';
23
24
/*!
25
* Assertion Error
26
*/
test/expect.js
@@ -4,10 +4,6 @@ import {globalErr as err} from './bootstrap/index.js';
4
describe('expect', function () {
5
var expect = chai.expect;
6
7
- it('chai.version', function() {
8
- expect(chai).to.have.property('version');
9
- });
10
11
it('assertion', function(){
12
expect('test').to.be.a('string');
13
expect('foo').to.equal('foo');
0 commit comments