Skip to content

Commit

Permalink
test: don't run on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Apr 26, 2024
1 parent 1713dfa commit 07c821f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/nuts/delete/source.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ describe('project delete source NUTs', () => {
expect(fs.existsSync(brokerPath)).to.be.true;
});

(platform() === 'win32' ? it : it.skip)('deletes a remote-only layout using interactive prompt', async () => {
(platform() === 'win32' ? it.skip : it)('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 07c821f

Please sign in to comment.