/**

 * Copyright (c) 2024 Huawei Technologies Co., Ltd.

 *

 * This source code is licensed under the MIT license found in the

 * LICENSE-MIT file in the root directory of this source tree.

 *

 * @format

 */



import 'react-native';

import React from 'react';

import App from '../App';



// Note: import explicitly to use the types shiped with jest.

import { it } from '@jest/globals';



// Note: test renderer must be required after react-native.

import renderer from 'react-test-renderer';



it('renders correctly', () => {

  renderer.create(<App />);

});