Skip to content

Commit 4f98dfa

Browse files
committed
test: source privacy flag from launcherOptions
1 parent da13c32 commit 4f98dfa

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
@@ -1956,7 +1956,7 @@ describe('persistence', () => {
19561956

19571957
describe('true', () => {
19581958
beforeEach(() => {
1959-
mParticle.config.noFunctional = true;
1959+
mParticle.config.launcherOptions = { noFunctional: true };
19601960
});
19611961

19621962
it('should NOT store cookie when useCookieStorage = true', async () => {
@@ -1992,7 +1992,7 @@ describe('persistence', () => {
19921992

19931993
describe('false', () => {
19941994
beforeEach(() => {
1995-
mParticle.config.noFunctional = false;
1995+
mParticle.config.launcherOptions = { noFunctional: false };
19961996
});
19971997

19981998
it('should store cookie when useCookieStorage = true', async () => {

0 commit comments

Comments
 (0)