Skip to content

Instantly share code, notes, and snippets.

@fkromer
Last active March 24, 2021 08:53
Show Gist options
  • Save fkromer/329b53673d9b58d13ebea323bab2feb3 to your computer and use it in GitHub Desktop.
Save fkromer/329b53673d9b58d13ebea323bab2feb3 to your computer and use it in GitHub Desktop.
import { Blub } from './blub';
describe('Blub', () => {
it('should create an instance', () => {
expect(new Blub()).toBeTruthy();
});
});
export class Blub {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment