import React from 'react';
import { create } from 'react-test-renderer';
import { Counter } from '..';
test('Default', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Interactive', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Gray', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
tree.update(
);
expect(tree.toJSON()).toMatchSnapshot();
});
test('Orange', () => {
const tree = create(
);
expect(tree.toJSON()).toMatchSnapshot();
tree.update(
);
expect(tree.toJSON()).toMatchSnapshot();
});