import autobind from 'autobind-decorator';
import Chart, { KVs } from '../core';
import { name, schema } from './entities/test-unique';
/**
* For testing
*/
// eslint-disable-next-line import/no-default-export
export default class TestUniqueChart extends Chart<typeof schema> {
constructor() {
super(name, schema);
}
@autobind
protected async tickMajor(): Promise<Partial<KVs<typeof schema>>> {
return {};
protected async tickMinor(): Promise<Partial<KVs<typeof schema>>> {
public async uniqueIncrement(key: string): Promise<void> {
await this.commit({
foo: [key],
});