From 0ecfd106f498c3d713185e504a6b28b437638f34 Mon Sep 17 00:00:00 2001 From: Eliot Berriot <contact@eliotberriot.com> Date: Mon, 21 Jan 2019 11:04:47 +0100 Subject: [PATCH] Fixed failing unit test because of leaking state --- front/tests/unit/specs/store/instance.spec.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/front/tests/unit/specs/store/instance.spec.js b/front/tests/unit/specs/store/instance.spec.js index a6488dc7..5ae771c7 100644 --- a/front/tests/unit/specs/store/instance.spec.js +++ b/front/tests/unit/specs/store/instance.spec.js @@ -1,5 +1,6 @@ import {expect} from 'chai' var sinon = require('sinon') +import axios from 'axios' import moxios from 'moxios' import store from '@/store/instance' import { testAction } from '../../utils' @@ -14,6 +15,7 @@ describe('store/instance', () => { afterEach(function () { sandbox.restore() moxios.uninstall() + axios.defaults.baseURL = null }) describe('mutations', () => { -- GitLab