Skip to content

Commit 6ffb74a

Browse files
Copiloteleanorjboyd
andcommitted
Remove debug console.log statements from test
Co-authored-by: eleanorjboyd <26030610+eleanorjboyd@users.noreply.github.com>
1 parent e83b72b commit 6ffb74a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/test/testing/utils.unit.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,12 @@ async function test_writeTestIdToClipboard() {
2323
// unittest id
2424
const testItem = { id: 'a/b/c.py\\MyClass\\my_method' };
2525
await utils.writeTestIdToClipboard(testItem as any);
26-
console.log('First call - stub call count:', clipboardStub.callCount, 'args:', clipboardStub.args);
2726
sinon.assert.calledOnceWithExactly(clipboardStub, 'c.MyClass.my_method');
2827
clipboardStub.resetHistory();
2928

3029
// pytest id
3130
const testItem2 = { id: 'tests/test_foo.py::TestClass::test_method' };
3231
await utils.writeTestIdToClipboard(testItem2 as any);
33-
console.log('Second call - stub call count:', clipboardStub.callCount, 'args:', clipboardStub.args);
3432
sinon.assert.calledOnceWithExactly(clipboardStub, 'tests/test_foo.py::TestClass::test_method');
3533
clipboardStub.resetHistory();
3634

0 commit comments

Comments
 (0)