Importing Chai in Typescript
import { should } from 'chai';
should();
The tests for the chai typings do the following:
import chai = require('chai');
var should = chai.should();
Does that work for you?
import { should } from 'chai';
should();
The tests for the chai typings do the following:
import chai = require('chai');
var should = chai.should();
Does that work for you?