JSFiddle - React, Tailwind, and code Playground

by Rick Hedin

HTML

<script src="http://mochajs.org/example/mocha.js"></script>
<link rel="stylesheet" href="http://mochajs.org/example/mocha.css">
<script src="http://chaijs.com/chai.js"></script>
<script src="https://raw.githubusercontent.com/domenic/chai-as-promised/master/lib/chai-as-promised.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<div id="mocha"></div>

JavaScript

mocha.setup('bdd');
chai.should();
chai.config.includeStack = false;

describe('"slow tests" of the ACPU', function () {
    var expect = chai.expect;
    chai.config.includeStack = false;
    chai.Assertion.includeStack = false;

    it('should say that true is true when I just say so', function () {
        expect(true).to.equal(false);
    });

});

mocha.run();