Upgrade to Pro — share decks privately, control downloads, hide ads and more …

fly & ava

Pine Mizune
December 08, 2015

fly & ava

Meguro.es #1 in Drecom の発表資料です。
http://meguroes.connpass.com/event/21510/

Pine Mizune

December 08, 2015
Tweet

More Decks by Pine Mizune

Other Decks in Programming

Transcript

  1. 自己紹介 o ID / HN: @pine613 o 好きな言語: JavaScript /

    Crystal o 仕事で書いてる: Perl / Swift / Kotlin o Mobile Factory, Inc o 最寄り: 五反田駅
  2. 目次 • fly とは ? • ava とは ? •

    ava + Promise • ava + Generator • ava + Async • ava + fly
  3. • ES6/7 ベースのテストランナー • Promise, Generator, Async との相性 • Babel,

    co, power-assert のビルトインサポート ava とは ? 作者: sindresorhus
  4. mocha + Callback var expect = require(‘chai’).expect; it(‘testFunc’, function (done)

    { testFunc(function (result) { expect(result).to.equal(10); done(); }); });
  5. ava + Callback import test from ‘ava’ test.cb(‘testFunc’, t =>

    { testFunc(result => { t.is(result, 10) t.end() }) })
  6. mocha + Promise var expect = require(‘chai’).expect; it(‘testFunc’, function (done)

    { testFunc().then(function (result) { expect(result).to.equal(10); done(); }); });
  7. ava + Promise import test from ‘ava’ test(‘testFunc’, t =>

    { return testFunc().then(result => { t.is(result, 10) }) }) Promise をそのまま返せる!
  8. ava + co import test from ‘ava’ test(‘testFunc’, t =>

    { return co(function *() { const result = yield testFunc() t.is(result, 10) }) })
  9. ava + Generator import test from ‘ava’ test(‘testFunc’, function *()

    { const result = yield testFunc() t.is(result, 10) }) Generator をそのまま返せる!
  10. ava + Async import test from ‘ava’ test(‘testFunc’, async t

    => { const result = await testFunc() t.is(result, 10) }) async / await 対応
  11. 告知: Gotanda.js #2 開催決定!! ü Gotanda.js #2 〜JS新年会〜 ü 日時:

    2016 年 1 月 8 日 (金) ü 会場: 株式会社ガイアックス ü 内容: LT 祭!! (5min LT x 8) Ø 申し込みは Connpass から! http://gotandajs.connpass.com/event/22162/