1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 01:34:57 +01:00
market/tests/unit/__fixtures__/testFormData.ts

16 lines
305 B
TypeScript
Raw Normal View History

2020-07-10 13:19:04 +02:00
import { MetaDataPublishForm } from '../../../src/@types/MetaData'
2020-05-07 08:03:30 +02:00
2020-07-10 13:19:04 +02:00
const testFormData: MetaDataPublishForm = {
2020-05-07 08:03:30 +02:00
author: '',
files: [],
license: '',
2020-07-09 18:08:13 +02:00
price: '0',
name: '',
description: 'description',
2020-07-09 18:08:13 +02:00
termsAndConditions: true,
2020-07-10 13:19:04 +02:00
access: 'Download'
// links: []
2020-05-07 08:03:30 +02:00
}
export default testFormData