weijie-tang
weijie-tang
I've been trying to wrap some chai-things in expect syntax as a custom assertion for the purposes of use with Serenity-JS but I get an error when I try to...
@meeber I have them imported in the same order as you do and I still get the error. ```typescipt import chai = require('chai'); chai.use(require('chai-things')); chai.use(require('chai-as-promised')); const expect = chai.expect; ```
The second assertion worked after using chai.should(); in my imports, but the first one still has the same issue.