Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div id="mocha"></div>
              
            
!

CSS

              
                
              
            
!

JS

              
                mocha.setup('bdd');
var assert = chai.assert;
var expect = chai.expect;
var server;

before(function () { server = sinon.fakeServer.create(); });
after(function () { server.restore(); });

//A basic test
describe("My First Test Suite", function() {
      it("introduces a test suite", function() {
        expect(true).to.equal(true);
      });
    });


//A spy
describe("Spying on an object", function(){
    	var car, go = null;
    	
    	//the beforeEach setup function will be called with each run of the suite
    	beforeEach(function(){
    	car = {
	    	go: function(value) {
				speed = value;
			}
    	};
		sinon.spy(car, 'go');	//creates the spy

		car.go(50);
		car.go(80);
    	});
	    
	    //This test will succeed
	    it("Called the go function", function(){
		    assert(car.go.called);
		});
		
		//This test will fail- the go function is called twice
		it("Called the go function once", function(){
		    assert(car.go.calledOnce);
		});
 });



//A fake server
describe("A fake HTTP Server", function() {
  function getCustomer(custId, callback){
     jQuery.ajax({
          url: '/customer/' + custId,
          success: function (data) {
              // Node-style CPS: callback(err, data)
              callback(null, data);
          }
      });
  }

  it("calls callback with deserialized data", function () {
      var callback = sinon.spy();
      getCustomer(5, callback);

      // This is part of the FakeXMLHttpRequest API
      server.requests[0].respond(
          200,
          { "Content-Type": "application/json" },
          JSON.stringify([{ id: 5, FirstName: "Bob", LastName: "Dobbs" }])
      );

      assert(callback.calledOnce);
  });  
});

mocha.run();
              
            
!
999px

Console