mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-28 21:32:05 +00:00
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import { shallow } from "enzyme";
|
|
import React from "react";
|
|
import { CostEstimateText } from "./CostEstimateText";
|
|
const props = {
|
|
requestUnits: 5,
|
|
isAutoscale: false,
|
|
};
|
|
describe("CostEstimateText Pane", () => {
|
|
it("should render Default properly", () => {
|
|
const wrapper = shallow(<CostEstimateText {...props} />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|