-
Notifications
You must be signed in to change notification settings - Fork 16
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
W-17599215: add totalnumberofmetadatafiles field #719
base: main
Are you sure you want to change the base?
Changes from 7 commits
ed5fcd8
d70a23f
fd6a770
0692e63
22c0830
914bc19
9318dff
bde9b45
c24809a
9ddbce9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
*/ | ||
import path from 'node:path'; | ||
import fs from 'node:fs'; | ||
import sinon = require('sinon'); | ||
import * as sinon from 'sinon'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix for - x TypeScript import equals declaration is not supported in strip-only mode |
||
import { instantiateContext, MockTestOrgData, restoreContext, stubContext } from '@salesforce/core/testSetup'; | ||
import { assert, expect } from 'chai'; | ||
import { Connection, SfProject, SfError } from '@salesforce/core'; | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,11 @@ import { | |
isErrorPackageNotAvailable, | ||
waitForPublish, | ||
} from '../../src/package/packageInstall'; | ||
import { | ||
PackageEvents, | ||
PackageInstallCreateRequest, | ||
PackageInstallOptions, | ||
PackagingSObjects, | ||
} from '../../src/interfaces'; | ||
import { PackageEvents, PackageInstallCreateRequest, PackageInstallOptions } from '../../src/interfaces'; | ||
import { SubscriberPackageVersion } from '../../src/package'; | ||
import PackageInstallRequest = PackagingSObjects.PackageInstallRequest; | ||
import * as PackagingSObjects from '../../src/interfaces/packagingSObjects'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fix for - x TypeScript import equals declaration is not supported in strip-only mode |
||
|
||
type PackageInstallRequest = PackagingSObjects.PackagingSObjects.PackageInstallRequest; | ||
const myPackageVersion04t = '04t6A0000000X0UQAU'; | ||
|
||
describe('Package Install', () => { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.