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

10 lines
302 B
TypeScript
Raw Normal View History

2021-05-11 11:05:04 +02:00
// Application imports
import { TokenRegistry } from '@app/_eth/token-registry';
2021-05-10 18:15:25 +02:00
import { environment } from '@src/environments/environment';
describe('TokenRegistry', () => {
it('should create an instance', () => {
expect(new TokenRegistry(environment.registryAddress)).toBeTruthy();
});
});