8 lines
158 B
TypeScript
8 lines
158 B
TypeScript
import { Galeria } from './galeria';
|
|
|
|
describe('Galeria', () => {
|
|
it('should create an instance', () => {
|
|
expect(new Galeria()).toBeTruthy();
|
|
});
|
|
});
|