Skip to content

Commit

Permalink
Clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
gr812b committed Nov 12, 2024
1 parent b4fb36f commit bcbb23d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
5 changes: 0 additions & 5 deletions e2e/tests/create/no-analyzer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ test.describe('Create graphs', () => {

test.beforeEach(async ({ page }) => {
const uploadTester = new UploadTester(page);

page.on('console', msg => {
console.log(`Console message: [${msg.type()}] ${msg.text()}`);
});

await page.goto('http://localhost:5173/');
await uploadTester.testUploadBinFile();
});
Expand Down
7 changes: 0 additions & 7 deletions front-end/src/lib/apiUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,6 @@ export const ApiUtil = {
body: formData,
});

// eslint-disable-next-line no-console
console.log(response);
// eslint-disable-next-line no-console
console.log(response.statusText);
// eslint-disable-next-line no-console
console.log(await response.text());

if (!response.ok) throw Error(response.statusText);
},
};

0 comments on commit bcbb23d

Please sign in to comment.