Skip to content

Commit

Permalink
test: skip most source-behavior nuts
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Jun 3, 2024
1 parent 42f1265 commit 6cfb3eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/nuts/convert/decompose.nut.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('source behavior changes', () => {
});
});

it('produces dry run output and makes no changes', async () => {
it.skip('produces dry run output and makes no changes', async () => {
const originalProject = await getProject(session);
const originalFileList = await fs.promises.readdir(path.join(session.project.dir, 'force-app'), {
recursive: true,
Expand Down Expand Up @@ -86,7 +86,7 @@ describe('source behavior changes', () => {
);
});

it('produces actual output and makes expected changes', async () => {
it.skip('produces actual output and makes expected changes', async () => {
const result = execCmd<SourceBehaviorResult>(
'project convert source-behavior --behavior decomposeCustomLabelsBeta --json',
{
Expand All @@ -104,7 +104,7 @@ describe('source behavior changes', () => {
expect(fs.existsSync(path.join(session.project.dir, DRY_RUN_DIR))).to.be.false;
});

it("throws on repeated preset that's already done", () => {
it.skip("throws on repeated preset that's already done", () => {
const err = execCmd<SourceBehaviorResult>(
'project convert source-behavior --behavior decomposeCustomLabelsBeta --json',
{
Expand Down

0 comments on commit 6cfb3eb

Please sign in to comment.