Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/scripts/controllers/permissions/background-api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ const setupPermissionBackgroundApiMethods = (overrides) => {
};

describe('permission background API methods', () => {
beforeEach(() => {
// Test warning to verify baseline system
console.warn(
'REVIEWER_TEST: This warning should be detected by the baseline system',
);
});
afterEach(() => {
jest.resetAllMocks();
MockNetworkSelectors.getNetworkConfigurationsByCaipChainId.mockReturnValue(
Expand Down
6 changes: 6 additions & 0 deletions test/integration/confirmations/signatures/permit.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ const backgroundConnectionMocked = {
};

describe('Permit Confirmation', () => {
beforeEach(() => {
// Test warning to verify baseline system
console.warn(
'REVIEWER_TEST: This warning should be detected by the baseline system',
);
});
beforeEach(() => {
jest.resetAllMocks();
mockedBackgroundConnection.submitRequestToBackground.mockImplementation(
Expand Down
Loading