azure-functions: Add missing test configuration files. (#2312)

These missing configurations, which weren't identified in the original
implementation of `apollo-server-azure-functions` in #1926, are responsible
for the failures which have surfaced in the #2228, which updates Jest to v24.x.
This commit is contained in:
Jesse Rosenberger 2019-02-13 20:24:32 +02:00 committed by GitHub
parent e7709588fb
commit 8c71adf2aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,3 @@
const config = require('../../jest.config.base');
module.exports = Object.assign(Object.create(null), config);

View file

@ -0,0 +1,8 @@
{
"extends": "../../../../tsconfig.test.base",
"include": ["**/*"],
"references": [
{ "path": "../../" },
{ "path": "../../../apollo-server-integration-testsuite" },
]
}