fix: Remove console.log()s

This commit is contained in:
April Hall 2025-02-27 08:46:58 -05:00
parent a23ec93319
commit 34e2ad0748

View File

@ -26,7 +26,6 @@ test.describe('Create Channel', () => {
test('successfully create new channel', async ({ request }) => {
const uuid: string = generate15CharUUID();
console.log(uuid);
// Try to create new channel
await tryCreateChannel(page, uuid);
@ -54,7 +53,6 @@ test.describe('Create Channel', () => {
test('should not duplicate channel names', async () => {
const uuid: string = generate15CharUUID();
console.log(uuid);
// Try to create new channel
await tryCreateChannel(page, uuid);