mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-15 11:51:30 +00:00
* Feature: adding dynamic variable support (#3609) Co-authored-by: Raghav Sethi <109696225+rsxc@users.noreply.github.com> Co-authored-by: sanjai0py <sanjailucifer666@gmail.com>
12 lines
167 B
JavaScript
12 lines
167 B
JavaScript
jest.mock('nanoid', () => {
|
|
return {
|
|
nanoid: () => {}
|
|
};
|
|
});
|
|
|
|
jest.mock('strip-json-comments', () => {
|
|
return {
|
|
stripJsonComments: (str) => str
|
|
};
|
|
});
|