Munieru / MUROOKA Naoki

Results 53 issues of Munieru / MUROOKA Naoki
trafficstars

* [ ] BDD( #4 ) * [ ] TDD( #5 ) * [ ] QUnit( #7 ) * [x] Exports( #6 ) cf. [mocha/lib/interfaces at master · mochajs/mocha](https://github.com/mochajs/mocha/tree/master/lib/interfaces)

like this: ```js suite('Array', function() { setup(function() { // ... }); suite('#indexOf()', function() { test('should return -1 when not present', function() { assert.equal(-1, [1,2,3].indexOf(4)); }); }); }); ```

like this: ```js describe('Array', function() { before(function() { // ... }); describe('#indexOf()', function() { context('when not present', function() { it('should not throw an error', function() { (function() { [1,2,3].indexOf(4); }).should.not.throw();...

- Based on [JavaScript](https://slackthemes.net/#/javascript) theme - Some colors changed to [those of TypeScript logo](https://www.typescriptlang.org/branding/)

- Based on [JavaScript](https://slackthemes.net/#/javascript) theme - Some colors changed to [those of Node.js logo](https://nodejs.org/en/about/resources/)

- Based on [JavaScript](https://slackthemes.net/#/javascript) theme - Some colors changed to [those of Java logo](https://colorswall.com/palette/170)

cf. https://github.com/ts-examples/sleep/pull/47

```js var html = UrlFetchApp.fetch('http://en.wikipedia.org/wiki/Document_Object_Model').getContentText() var parser = HtmlParser.fromHTML(html) ```