Skip to content

Commit

Permalink
Woot new errors.... I don't get this
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodecleyre committed Oct 25, 2023
1 parent f2217f6 commit c14b923
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/utils/spo.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2130,7 +2130,7 @@ describe('utils/spo', () => {
}
}

throw 'Invalid request';
throw `Invalid request from post ${opts.data}`;
});

const actual = await spo.setListItem(webUrl, listUrl, '1', true, { Title: 'NewTitle', customColumn: 'My custom column' }, logger, true);
Expand Down Expand Up @@ -2243,7 +2243,7 @@ describe('utils/spo', () => {
}
}

throw 'Invalid request';
throw `Invalid request ${opts.data}`;
});

try {
Expand Down Expand Up @@ -2289,7 +2289,7 @@ describe('utils/spo', () => {
}
}

throw 'Invalid request';
throw `Invalid request ${opts.data}`;
});

try {
Expand All @@ -2309,7 +2309,7 @@ describe('utils/spo', () => {
}
}

throw 'Invalid request';
throw `Invalid request ${opts.data}`;
});

try {
Expand Down Expand Up @@ -2340,7 +2340,7 @@ describe('utils/spo', () => {
}
}

throw 'Invalid request';
throw `Invalid request ${opts.url}`;
});

try {
Expand Down

0 comments on commit c14b923

Please sign in to comment.