From 3789b88d0e9b08c255a5a92c919a5a8c36e2f77d Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Thu, 16 Jan 2025 22:33:34 +0300 Subject: [PATCH] Update edit.test.ts --- tests/commands/channels/edit.test.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/commands/channels/edit.test.ts b/tests/commands/channels/edit.test.ts index a6e33c26..b2894b82 100644 --- a/tests/commands/channels/edit.test.ts +++ b/tests/commands/channels/edit.test.ts @@ -28,6 +28,9 @@ describe('channels:edit', () => { const stdout = execSync(cmd, { encoding: 'utf8' }) if (process.env.DEBUG === 'true') console.log(cmd, stdout) checkStdout(stdout) + expect(content('tests/__data__/output/channels.xml')).toEqual( + content('tests/__data__/expected/sites/channels-edit/example.com.channels.xml') + ) } catch (error) { // NOTE: for Windows only if (process.env.DEBUG === 'true') console.log(cmd, error)