Last active
March 24, 2021 08:53
-
-
Save fkromer/329b53673d9b58d13ebea323bab2feb3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Blub } from './blub'; | |
describe('Blub', () => { | |
it('should create an instance', () => { | |
expect(new Blub()).toBeTruthy(); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class Blub { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment