mirror of
https://github.com/balzack/databag.git
synced 2025-05-02 22:45:21 +00:00
10 lines
169 B
TypeScript
10 lines
169 B
TypeScript
import { greet } from './main'
|
|
|
|
test('the data is peanut butter', () => {
|
|
expect(1).toBe(1)
|
|
});
|
|
|
|
test('greeting', () => {
|
|
expect(greet('Foo')).toBe('Hello Foo')
|
|
});
|