Skip to content

Commit

Permalink
Remove unused declarations from Projects, Issues, Authentication and …
Browse files Browse the repository at this point in the history
…Sprints src

Signed-off-by: Gabriel Ziegler <[email protected]>
  • Loading branch information
gabrielziegler3 committed Oct 28, 2019
1 parent d8e4eb3 commit 74c5dd1
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/Sprints/DeleteSprint.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export default {
const headers = { Authorization: this.token };
try {
const response = await HTTP.get(`sprints/${this.$route.params.id}`, { headers });
await HTTP.delete(`sprints/${this.$route.params.id}`, { headers });
this.$router.push({ name: 'Releases', params: { id: this.projectId } });
} catch (err) {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Authentication/Login.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On login', () => {
let state;
let actions;
let store;
let router;
const stub = sandbox.stub();

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Authentication/Register.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ describe('On register', () => {
let state;
let actions;
let store;
let router;
const loginStub = sandbox.stub();

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Issues/Issues.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On Issues Issue', () => {
localVue.use(Vuex);
const sandbox = sinon.createSandbox();
let state;
let actions;
let store;

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/AddProject.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On Add Project', () => {
localVue.use(Vuex);
const sandbox = sinon.createSandbox();
let state;
let actions;
let store;

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/DeleteProject.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On Delete Project', () => {
localVue.use(Vuex);
const sandbox = sinon.createSandbox();
let state;
let actions;
let store;

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/EditProject.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On Edit Project', () => {
localVue.use(Vuex);
const sandbox = sinon.createSandbox();
let state;
let actions;
let store;

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/Project.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ describe('On Project Component', () => {
localVue.use(Vuex);
const sandbox = sinon.createSandbox();
let state;
let actions;
let store;

beforeEach(() => {
Expand Down
1 change: 0 additions & 1 deletion test/unit/specs/Projects/Projects.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ describe('On projects component', () => {
const sandbox = sinon.createSandbox();
let state;
let store;
let router;

beforeEach(() => {
state = {
Expand Down

0 comments on commit 74c5dd1

Please sign in to comment.