diff --git a/lib/chai.js b/lib/chai.js index fa3a0cf0..7569595c 100644 --- a/lib/chai.js +++ b/lib/chai.js @@ -15,12 +15,6 @@ import {assert} from './chai/interface/assert.js'; const used = []; -/*! - * Chai version - */ - -export const version = '4.3.3'; - /*! * Assertion Error */ diff --git a/test/expect.js b/test/expect.js index 9667753f..2dd08ef2 100644 --- a/test/expect.js +++ b/test/expect.js @@ -4,10 +4,6 @@ import {globalErr as err} from './bootstrap/index.js'; describe('expect', function () { var expect = chai.expect; - it('chai.version', function() { - expect(chai).to.have.property('version'); - }); - it('assertion', function(){ expect('test').to.be.a('string'); expect('foo').to.equal('foo');