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

19 lines
347 B
TypeScript
Raw Normal View History

2020-10-01 17:13:19 +02:00
import { MetadataPublishForm } from '../../../src/@types/MetaData'
2020-05-07 08:03:30 +02:00
2020-07-16 13:39:02 +02:00
const testFormData: MetadataPublishForm = {
2020-05-07 08:03:30 +02:00
author: '',
files: [],
license: '',
2020-10-21 14:37:18 +02:00
dataTokenOptions: {
name: '',
symbol: ''
2020-09-02 11:43:15 +02:00
},
2020-07-09 18:08:13 +02:00
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