diff --git a/test/nuts/tracking/constants.ts b/test/nuts/tracking/constants.ts index 96c869db..a111875a 100644 --- a/test/nuts/tracking/constants.ts +++ b/test/nuts/tracking/constants.ts @@ -13,4 +13,4 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -export const eBikesDeployResultCount = 213; +export const eBikesDeployResultCount = 297; diff --git a/test/nuts/tracking/remoteChanges.nut.ts b/test/nuts/tracking/remoteChanges.nut.ts index 26f39b22..e3c90324 100644 --- a/test/nuts/tracking/remoteChanges.nut.ts +++ b/test/nuts/tracking/remoteChanges.nut.ts @@ -33,6 +33,7 @@ config.truncateThreshold = 0; const filterIgnored = (r: PreviewFile): boolean => r.ignored !== true; const noAudience = (pf: PreviewFile | FileResponse) => pf.type !== 'Audience'; const noReportType = (pf: PreviewFile | FileResponse) => pf.type !== 'ReportType'; +const noNavigationMenu = (pf: PreviewFile | FileResponse) => pf.type !== 'NavigationMenu'; describe('remote changes', () => { before(async () => { @@ -173,8 +174,8 @@ describe('remote changes', () => { const result = execCmd('retrieve metadata preview --json', { ensureExitCode: 0, }).jsonOutput?.result; - // Audience created as a side effect of experiences - expect(result?.toRetrieve.filter(noAudience)).to.deep.equal([]); + // Audience and NavigationMenu created as a side effect of experiences + expect(result?.toRetrieve.filter(noAudience).filter(noNavigationMenu)).to.deep.equal([]); }); });