Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

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. });