Skip to content

Commit 5fd26c0

Browse files
authored
test: skip most source-behavior nuts (#1037)
1 parent 816d9d9 commit 5fd26c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/nuts/convert/decompose.nut.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('source behavior changes', () => {
2424
});
2525
});
2626

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

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

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

0 commit comments

Comments
 (0)