mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-22 09:32:41 +00:00
feat: tests
This commit is contained in:
13
packages/core/test/dummy/not-a-dish.ts
Normal file
13
packages/core/test/dummy/not-a-dish.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import {SCThingOriginType} from '../../src/index.js';
|
||||
import {SCDish} from '../../lib/index.js';
|
||||
|
||||
export const notADish: Omit<SCDish, 'type'> & {type: 'foobar'} = {
|
||||
categories: ['appetizer'],
|
||||
name: 'foo',
|
||||
origin: {
|
||||
created: '',
|
||||
type: SCThingOriginType.User,
|
||||
},
|
||||
type: 'foobar',
|
||||
uid: 'bar',
|
||||
};
|
||||
Reference in New Issue
Block a user