mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
Use assert.fail instead of comparing false and true
GitOrigin-RevId: c6cbaf0a424771cf2a037366fccd790a13d9b1bb
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
const { expect } = require('chai')
|
||||
const { assert, expect } = require('chai')
|
||||
const sinon = require('sinon')
|
||||
const modulePath = '../../../../app/src/Features/Subscription/RecurlyWrapper'
|
||||
const SandboxedModule = require('sandboxed-module')
|
||||
@@ -319,7 +319,7 @@ describe('RecurlyWrapper', function () {
|
||||
this.recurlyAccountId,
|
||||
this.newEmail
|
||||
)
|
||||
expect(false).to.equal(true) // Fail if we don't have an error
|
||||
assert.fail('Expected error not thrown')
|
||||
} catch (error) {
|
||||
expect(error).to.have.property('message')
|
||||
expect(error.message.startsWith('Invalid character')).to.be.true
|
||||
|
||||
Reference in New Issue
Block a user