Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created April 10, 2018 02:55
Show Gist options
  • Save haingdc/63389d88ea5ad264a2ad2acf12dded50 to your computer and use it in GitHub Desktop.
Save haingdc/63389d88ea5ad264a2ad2acf12dded50 to your computer and use it in GitHub Desktop.
Thao tác với DOM thông qua TDD
// photo-lister-spec.js
var expect = require("chai").expect,
PhotoLister = require("./photo-lister");
describe("PhotoLister", function() {
it("should exist", function() {
expect(PhotoLister).not.to.be.undefined;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment