Files
directus/tests/setup/seeds/04_directus_users.js
Jay Cammarano 90bb9d4879 End-to-end tests for filters (#9078)
* reorganized for sanity

* filter tests for _eq/_neq

* logical operators

* update one one to many

* /:collection PATCH one to many

* base tables.id => uuids to minimize collisions

* tests pass

* added python to dockerfile

* tests passing

* ci?

* ci...

* hanging async
2021-11-01 14:21:44 -04:00

13 lines
305 B
JavaScript

exports.seed = async function (knex) {
return await knex('directus_users').insert([
{
id: 'a8057636-9b70-4804-bfec-19c88d1a3273',
email: 'test@admin.com',
password: 'TestAdminPassword',
status: 'active',
role: '5b935e65-d3db-4457-96f1-597e2fcfc7f3',
token: 'AdminToken',
},
]);
};