Skip to content

Fixed unit test

22e348c
Select commit
Loading
Failed to load commit list.
Open

SFDC-112 - Update Salesforce API Version #88

Fixed unit test
22e348c
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Jun 9, 2025 in 2m 19s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #88 SFDC-112 - Update Salesforce API Version.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Node.js
Operating System Linux (Jammy)
Node.js Version 18.17
Build Configuration
{
  "language": "node_js",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "sudo": true,
  "cache": false,
  "node_js": [
    "18.17"
  ],
  "env": [
    "jobs={:URL=>\"https://developer.salesforce.com/media/salesforce-cli/sf/channels/stable/sf-linux-x64.tar.xz\"}"
  ],
  "before_install": [
    "openssl aes-256-cbc -K $d2e4104f247f_key -iv $d2e4104f247f_iv -in assets/server.key.enc -out assets/server.key -d",
    "export SF_AUTOUPDATE_DISABLE=false",
    "export SF_USE_GENERIC_UNIX_KEYCHAIN=true",
    "export SF_DOMAIN_RETRY=300",
    "export SF_DISABLE_TELEMETRY=true",
    "npm install @salesforce/cli --global",
    "sf update",
    "sf --version",
    "sf plugins --core",
    "sf auth jwt grant --client-id \"$HLSFDC_CONSUMERKEY\" --jwt-key-file assets/server.key --username \"$HLSFDC_USERNAME\" --set-default-dev-hub -a HubOrg"
  ],
  "script": [
    "sf org create scratch -v HubOrg -f config/project-scratch-def.json -a ciorg --wait 4",
    "sf project deploy start --target-org ciorg",
    "sf apex run test --target-org ciorg -c -r human --wait 10",
    "sf org delete scratch --target-org ciorg -p"
  ]
}