Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: skip most source-behavior nuts #1037

Merged
merged 1 commit into from
Jun 3, 2024
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
Loading