UNPKG

252 BJavaScriptView Raw
1let rallyTools = require("../bundle.js");
2
3const chai = require("chai");
4
5chai.should();
6global.expect = chai.expect;
7
8describe("exports", function(){
9 it("should have exports", function(){
10 rallyTools.should.contain.key("Rule");
11 });
12});