From c33cf632f6a39181a894e2a8a2db5c8adab04c9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Oddsson?= Date: Fri, 3 Nov 2023 09:57:22 +0100 Subject: [PATCH] remove chai version constant (#1550) * remove chai version constant * remove version test --- lib/chai.js | 6 ------ test/expect.js | 4 ---- 2 files changed, 10 deletions(-) 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');