mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 18:10:43 +01:00
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
|
import { defineMessages } from '../../src/client'
|
||
|
|
||
|
test('defineMessages returns the identity of its first argument', () => {
|
||
|
const obj = {}
|
||
|
expect(obj).toBe(defineMessages(obj))
|
||
|
})
|