Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- import test from 'ava';
- import { mutations } from '../src/store/mutations';
-
- test('LOGOUT', t => {
- const {LOGOUT} = mutations;
- const state = {authenticated:true};
- LOGOUT(state);
- t.false(state.authenticated);
- });
|