import chai from "chai"
describe("Karma test runner", function() {
chai.should()
let sandbox = null
beforeEach(function() {
sandbox = (
{[...Array(10)].map((x, i) => {
return - Element {i + 1}
})}
)
})
it("should compile JSX correctly", function() {
document.body.appendChild(sandbox)
return true
})
})