Files
redash/client/cypress/seed-data.js
2019-03-24 11:24:59 -03:00

36 lines
613 B
JavaScript

exports.seedData = [
{
route: '/setup',
type: 'form',
data: {
name: 'Example Admin',
email: 'admin@redash.io',
password: 'password',
org_name: 'Redash',
},
},
{
route: '/login',
type: 'form',
data: {
email: 'admin@redash.io',
password: 'password',
},
},
{
route: '/api/data_sources',
type: 'json',
data: {
name: 'Test PostgreSQL',
options: {
dbname: 'postgres',
host: 'postgres',
port: 5432,
sslmode: 'prefer',
user: 'postgres',
},
type: 'pg',
},
},
];