Files
AlwaysHTTPS/test/spec/test.js
Zhigang Fang 0f4efc1e12 Initial Commit
2016-06-02 17:48:36 +08:00

12 lines
229 B
JavaScript

(function () {
'use strict';
describe('Give it some context', function () {
describe('maybe a bit more context here', function () {
it('should run here few assertions', function () {
});
});
});
})();