update to support compare functions
This commit is contained in:
12
test/test.ts
12
test/test.ts
@ -7,4 +7,16 @@ tap.test('should create a valid SmartVersion', async () => {
|
||||
expect(localSmartVersion).to.be.instanceof(smartversion.SmartVersion)
|
||||
})
|
||||
|
||||
tap.test('should correctly classify greater and less than', async () => {
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(localSmartVersion.greaterThanString('4.0.0')).to.be.false
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(localSmartVersion.greaterThanString('3.0.0')).to.be.true
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(localSmartVersion.lessThanString('v4.0.0')).to.be.true
|
||||
// tslint:disable-next-line:no-unused-expression
|
||||
expect(localSmartVersion.lessThanString('v3.0.0')).to.be.false
|
||||
|
||||
})
|
||||
|
||||
tap.start()
|
||||
|
Reference in New Issue
Block a user