swagger-express-mock-not-found-conflict
Version:
21 lines (20 loc) • 411 B
JavaScript
// holidays test data
module.exports = [{
id: 'testId1',
name: 'Holiday 1',
address: 'addres 1',
country: 'country 1',
adultPrice: 200,
childPrice: 150,
description: 'Some description',
minAmountPerson: 1,
maxAmountPerson: 20
}, {
id: 'testId2',
name: 'Holiday 2',
address: 'addres 2',
country: 'country 2',
adultPrice: 300,
childPrice: 100,
description: 'Some description 2'
}]