1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-31 06:51:10 +03:00

remove extra logging from JobList tests

This commit is contained in:
Keith Grant 2020-06-22 11:06:38 -07:00
parent b4a6749699
commit 638a6fdaa1

View File

@ -105,6 +105,16 @@ function waitForLoaded(wrapper) {
}
describe('<JobList />', () => {
let debug;
beforeEach(() => {
debug = global.console.debug; // eslint-disable-line prefer-destructuring
global.console.debug = () => {};
});
afterEach(() => {
global.console.debug = debug;
});
test('initially renders succesfully', async () => {
let wrapper;
await act(async () => {
@ -218,7 +228,7 @@ describe('<JobList />', () => {
jest.restoreAllMocks();
});
test.only('error is shown when job not successfully deleted from api', async () => {
test('error is shown when job not successfully deleted from api', async () => {
JobsAPI.destroy.mockImplementation(() => {
throw new Error({
response: {