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

9 lines
279 B
TypeScript

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