7
libs/shared/src/lib/shared.spec.ts
Normal file
7
libs/shared/src/lib/shared.spec.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { shared } from './shared.js';
|
||||
|
||||
describe('shared', () => {
|
||||
it('should work', () => {
|
||||
expect(shared()).toEqual('shared');
|
||||
});
|
||||
});
|
||||
3
libs/shared/src/lib/shared.ts
Normal file
3
libs/shared/src/lib/shared.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function shared(): string {
|
||||
return 'shared';
|
||||
}
|
||||
Reference in New Issue
Block a user