test.js 275 B

1234567891011
  1. /*global describe, it */
  2. 'use strict';
  3. (function () {
  4. describe('Give it some context', function () {
  5. describe('maybe a bit more context here', function () {
  6. it('should run here few assertions', function () {
  7. });
  8. });
  9. });
  10. })();