JSFiddle - React, Tailwind, and code Playground

by boneskull

HTML

<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/jasmine.css">
<script src="http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/jasmine.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/jasmine-html.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jasmine/2.2.1/boot.js"></script>

JavaScript

var hello = function hello() {
  return 'Hello World!';
};

describe('hello world', function() {
  describe('hello()', function() {
    it('should return "Hello World!"', function() {
      expect(hello()).toBe('Hello World!');
    });
  });
});