cic-staff-client/src/app/_helpers/token-registry.spec.ts

9 lines
281 B
TypeScript
Raw Normal View History

import { TokenRegistry } from '@app/_helpers/token-registry';
import {environment} from '@src/environments/environment';
describe('TokenRegistry', () => {
it('should create an instance', () => {
expect(new TokenRegistry(environment.registryAddress)).toBeTruthy();
});
});