jest/examples/module-mock/fruit.js

8 lines
186 B
JavaScript

// Copyright (c) Meta Platforms, Inc. and affiliates.. All Rights Reserved.
export const apple = 'apple';
export const strawberry = () => 'strawberry';
export default () => 'banana';