We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 907636a commit 4da20abCopy full SHA for 4da20ab
tests/McpResponse.test.ts
@@ -106,7 +106,7 @@ Testing 2`,
106
});
107
108
109
- it.only('saves snapshot to file', async t => {
+ it('saves snapshot to file', async t => {
110
const filePath = join(tmpdir(), 'test-screenshot.png');
111
try {
112
await withBrowser(async (response, context) => {
@@ -118,7 +118,6 @@ Testing 2`,
118
119
const result = await response.handle('test', context);
120
assert.equal(result[0].type, 'text');
121
- console.log(result[0].text);
122
t.assert.snapshot?.(stabilizeResponseOutput(result[0].text));
123
124
const content = await readFile(filePath, 'utf-8');
0 commit comments