Skip to content

Instantly share code, notes, and snippets.

@jrgleason
Created April 26, 2019 15:40
Show Gist options
  • Save jrgleason/83c30e6651b83a3521cb767a834f763a to your computer and use it in GitHub Desktop.
Save jrgleason/83c30e6651b83a3521cb767a834f763a to your computer and use it in GitHub Desktop.
How I run Mocha
mocha --delay --exit ./test/suite.js
import chai from "chai";
import sinon from "sinon";
import { Test } from "<Tested Class location>";
describe("Testing", ()=>{
....
});
async function wire(){
await import("./components/Test.spec"); // eslint-disable-line
run();
}
wire();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment