Skip to content

Commit 0847f1e

Browse files
committed
test: source privacy flag from launcherOptions
1 parent 273e170 commit 0847f1e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/src/tests-persistence.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,7 @@ describe('persistence', () => {
16671667
});
16681668

16691669
it('should NOT save products to LS when noTargeting is true', async () => {
1670-
mParticle.config.noTargeting = true;
1670+
mParticle.config.launcherOptions = { noTargeting: true };
16711671

16721672
mParticle.init(apiKey, mParticle.config);
16731673
await waitForCondition(hasIdentifyReturned);
@@ -1676,7 +1676,7 @@ describe('persistence', () => {
16761676
});
16771677

16781678
it('should save products to LS when noTargeting is false', async () => {
1679-
mParticle.config.noTargeting = false;
1679+
mParticle.config.launcherOptions = { noTargeting: false };
16801680

16811681
mParticle.init(apiKey, mParticle.config);
16821682
await waitForCondition(hasIdentifyReturned);

0 commit comments

Comments
 (0)