From 7185c05cbb4161b78e3b11e6c8e4a32082ec0dd4 Mon Sep 17 00:00:00 2001 From: mshanemc Date: Fri, 29 Sep 2023 14:29:00 -0500 Subject: [PATCH] chore: restore unneeded changes --- .github/workflows/test.yml | 4 ++-- package.json | 1 - test/nuts/scale/eda.nut.ts | 2 -- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f2dcb5007..2b8a51d035 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,8 +2,8 @@ name: tests on: - # push: - # branches-ignore: [main] + push: + branches-ignore: [main] workflow_dispatch: jobs: diff --git a/package.json b/package.json index f3d3156a52..9cd2033251 100644 --- a/package.json +++ b/package.json @@ -101,7 +101,6 @@ "repl": "node --inspect ./scripts/repl.js", "test": "wireit", "test:nuts": "mocha \"test/nuts/local/**/*.nut.ts\" --timeout 500000", - "test:nuts:scale": "mocha \"test/nuts/scale/eda.nut.ts\" --timeout 500000; mocha \"test/nuts/scale/lotsOfClasses.nut.ts\" --timeout 500000; mocha \"test/nuts/scale/lotsOfClassesOneDir.nut.ts\" --timeout 500000", "test:nuts:suggest": "mocha \"test/nuts/suggestType/suggestType.nut.ts\" --timeout 10000", "test:only": "wireit", "test:registry": "mocha ./test/registry/registryCompleteness.test.ts --timeout 50000", diff --git a/test/nuts/scale/eda.nut.ts b/test/nuts/scale/eda.nut.ts index f5dcdb430c..28559a02b1 100644 --- a/test/nuts/scale/eda.nut.ts +++ b/test/nuts/scale/eda.nut.ts @@ -8,7 +8,6 @@ import * as path from 'path'; import { performance } from 'node:perf_hooks'; import { TestSession } from '@salesforce/cli-plugins-testkit'; -import { sleep } from '@salesforce/kit'; import { MetadataResolver } from '../../../src'; import { MetadataConverter } from '../../../src'; import { ComponentSetBuilder } from '../../../src'; @@ -30,7 +29,6 @@ describe('tests using EDA', () => { after(async () => { await recordPerf(testName, performance); - await sleep(10000); await session?.clean(); });