jest/examples/automatic-mocks/__tests__/disableAutomocking.test.js

10 lines
220 B
JavaScript

// Copyright (c) Meta Platforms, Inc. and affiliates.. All Rights Reserved.
import utils from '../utils';
jest.disableAutomock();
test('original implementation', () => {
expect(utils.authorize()).toBe('token');
});