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

Temporarily do not run system tests #559

Merged
merged 4 commits into from
Aug 14, 2018
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test_script:
"Running npm run test:without-system-tests..."
"--------------------------------------------"
npm run test:without-system-tests
npm run coverage:system-tests
#npm run coverage:system-tests
npm run aggregateJUnit
junit-merge -d junit-aggregate -o junit-aggregate.xml
$NpmTestsExitCode = $LastExitCode
Expand Down
2 changes: 0 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
"test:integration": "lerna run test:integration --concurrency 1 --stream",
"test:without-system-tests":
"lerna exec --ignore system-tests --concurrency 1 --stream --bail=false -- npm run test",
"test:system-tests":
"lerna run test --scope system-tests --concurrency 1 --stream",
"coverage:system-tests":
"lerna run coverage --scope system-tests --concurrency 1 --stream",
"vscode:package":
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const CUSTOM_FIELD_FULLNAME = '.MyCustomField__c';
const SIMPLE_OBJECT_SOURCE_FOLDER = 'simpleObjectAndField';

// tslint:disable:no-unused-expression
describe('Generate faux classes for SObjects', function() {
xdescribe('Generate faux classes for SObjects', function() {
// tslint:disable-next-line:no-invalid-this
this.timeout(180000);
let username: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const MIN_CUSTOMOBJECT_NUM_FIELDS = 9;
const CUSTOMOBJECT_NUMBERFIELD_PRECISION = 18;

// tslint:disable:no-unused-expression
describe('Fetch sObjects', function() {
xdescribe('Fetch sObjects', function() {
// tslint:disable-next-line:no-invalid-this
this.timeout(180000);
let username: string;
Expand Down
14 changes: 7 additions & 7 deletions packages/system-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@
"compile": "tsc -p ./",
"lint": "tslint --project .",
"watch": "tsc -watch -p .",
"clean": "shx rm -rf .vscode-test && shx rm -rf node_modules && shx rm -rf out",
"clean":
"shx rm -rf .vscode-test && shx rm -rf node_modules && shx rm -rf out",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run compile && node ../../scripts/download-vscode-for-system-tests",
"test": "node ../../scripts/install-vsix-dependencies dbaeumer.vscode-eslint && node out/src/main.js",
"coverage": "npm run pretest && node ../../scripts/instrument-salesforcedx-vscode-extensions && cross-env COLLECT_COVERAGE=1 npm run test && node ../../scripts/remap-coverage"
"pretest":
"npm run compile && node ../../scripts/download-vscode-for-system-tests",
"coverage":
"npm run pretest && node ../../scripts/instrument-salesforcedx-vscode-extensions && cross-env COLLECT_COVERAGE=1 npm run test && node ../../scripts/remap-coverage"
},
"activationEvents": [
"*"
]
"activationEvents": ["*"]
}