Removed console log
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
c15934aabc
commit
9ef58cabd4
|
@ -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;
|
||||
|
||||
|
|
|
@ -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 => {
|
||||
|
|
Loading…
Reference in New Issue