Skip to content

Commit 57147f4

Browse files
committed
chore: pass credentials to tests
1 parent 38db2b2 commit 57147f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/entity/mixins/context_runtime.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ export function RuntimeContextFieldMixin<T extends InMemoryEntityConstructor>(su
2929
this.runtimeContext = Object.assign(this._runtimeContext, ctx);
3030
}
3131

32-
toJSON() {
33-
return { ...super.toJSON(), runtimeContext: this._runtimeContext };
32+
toJSON(exclude: string[] = []) {
33+
return { ...super.toJSON(exclude), runtimeContext: this._runtimeContext };
3434
}
3535
};
3636
}

0 commit comments

Comments
 (0)