選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

store.js 227 B

123456789
  1. import test from 'ava';
  2. import { mutations } from '../src/store/mutations';
  3. test('LOGOUT', t => {
  4. const {LOGOUT} = mutations;
  5. const state = {authenticated:true};
  6. LOGOUT(state);
  7. t.false(state.authenticated);
  8. });