Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

9 righe
227 B

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