expectPackage
function expectPackage(pkg): PackageAssertion;Defined in: packages/engine/src/testing/index.ts:579
Begin an assertion about a package’s declared descriptor.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
pkg | IEnginePackage |
Returns
Section titled “Returns”Example
Section titled “Example”expectPackage(myPackage).notToShadow(["price", "in", "of"]);expectPackage(myPackage).notToCollideWith(BUILTIN_PACKAGES);expectPackage(myPackage).toDeclareCompatibleEngineVersion();