Removed console log
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Joan Sanchez 2020-08-25 14:10:38 +02:00
parent c15934aabc
commit 9ef58cabd4
2 changed files with 2 additions and 3 deletions

View File

@ -14,7 +14,7 @@ describe('Component vnRouteIndex', () => {
}));
describe('checked() getter', () => {
it('should should return the checked lines', () => {
it('should return the checked lines', () => {
const data = controller.$.model.data;
data[0].checked = true;
data[2].checked = true;
@ -30,7 +30,7 @@ describe('Component vnRouteIndex', () => {
});
describe('totalCheked() getter', () => {
it('should should return the total checked lines', () => {
it('should return the total checked lines', () => {
const data = controller.$.model.data;
data[0].checked = true;

View File

@ -9,7 +9,6 @@ module.exports = {
const routesId = this.routeId.split(',');
const routes = await this.fetchRoutes(routesId);
const tickets = await this.fetchTickets(routesId);
console.log(tickets);
for (let route of routes) {
const routeTickets = tickets.filter(ticket => {