JSFiddle - React, Tailwind, and code Playground

by Leo Cavalcante

HTML

<link rel="stylesheet" href="http://qunitjs.com/resources/qunit.css">
<div id="foo"></div>
<div id="baz"></div>
<section>
    <div id="qunit"></div>
    <div id="qunit-fixture"></div>
</section>

JavaScript

test( 'foo', function() {
  ok( $('#foo').length, 'Has #foo!' );
});

test( 'bar', function() {
  ok( $('#bar').length, 'Has #bar!' );
});

test( 'baz', function() {
  ok( $('#baz').length, 'Has #baz!' );
});