mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
11 lines
219 B
JavaScript
11 lines
219 B
JavaScript
|
import "regenerator-runtime/runtime";
|
||
|
const actionsCodegen = require('./actions-codegen');
|
||
|
const sdlTest = require('./sdl');
|
||
|
|
||
|
const runTests = async () => {
|
||
|
await actionsCodegen();
|
||
|
await sdlTest();
|
||
|
};
|
||
|
|
||
|
runTests();
|