Skip to content

Commit

Permalink
test: no interactive tests on win
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Apr 25, 2024
1 parent 1cd3a9d commit 1713dfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/nuts/delete/source.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

import * as fs from 'node:fs';
import { fileURLToPath } from 'node:url';
import { platform } from 'node:os';
import * as path from 'node:path';
import { expect, assert, config } from 'chai';
import { Interaction, execCmd, execInteractiveCmd } from '@salesforce/cli-plugins-testkit';
Expand Down Expand Up @@ -268,7 +269,7 @@ describe('project delete source NUTs', () => {
expect(fs.existsSync(brokerPath)).to.be.true;
});

it('deletes a remote-only layout using interactive prompt', async () => {
(platform() === 'win32' ? it : it.skip)('deletes a remote-only layout using interactive prompt', async () => {
const layoutName = 'Account-Account %28Marketing%29 Layout';
const response = (
await execInteractiveCmd(
Expand Down

0 comments on commit 1713dfa

Please sign in to comment.