mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
f83a8e591f
Rename the admin secret key header used to access GraphQL engine from X-Hasura-Access-Key to X-Hasura-Admin-Secret. Server CLI and console all support the older flag but marks it as deprecated.
22 lines
828 B
JavaScript
22 lines
828 B
JavaScript
export const baseUrl = Cypress.config('baseUrl');
|
|
export const queryTypes = ['insert', 'update', 'delete'];
|
|
export const getTriggerName = (i, testName = '') =>
|
|
`apic_test_trigger_${testName}_${i}`;
|
|
export const getTableName = (i, testName = '') =>
|
|
`apic_test_table_${testName}_${i}`;
|
|
export const getWebhookURL = () => 'http://httpbin.org/post';
|
|
export const getNoOfRetries = () => '5';
|
|
export const getIntervalSeconds = () => '10';
|
|
export const getTimeoutSeconds = () => '25';
|
|
export const getElementFromAlias = alias => `[data-test=${alias}]`;
|
|
export const makeDataAPIUrl = dataApiUrl => `${dataApiUrl}/v1/query`;
|
|
export const makeDataAPIOptions = (dataApiUrl, key, body) => ({
|
|
method: 'POST',
|
|
url: makeDataAPIUrl(dataApiUrl),
|
|
headers: {
|
|
'x-hasura-admin-secret': key,
|
|
},
|
|
body,
|
|
failOnStatusCode: false,
|
|
});
|