import "react-native";
import * as React from "react";
import * as renderer from 'react-test-renderer';
import {colorScheme} from "../../../App/Themes/Colors";
import {ThirdTabComponent} from '../../../App/Components/<%= props.name %>Tabs'

test("Renders Correctly", () => {
    const tree = renderer.create(<ThirdTabComponent colorScheme={colorScheme(false)} />).toJSON();
    expect(tree).toMatchSnapshot();
});
