Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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