mirror of
https://github.com/vale981/apollo-server
synced 2025-03-16 07:46:54 -04:00

* import jest * remove mocha, chai, sinon * fix JSON parsing for package.json * replace import mocha, chai, sinon with jest * add jest as test npm script * remove dependency on mocha types * errors: remove unused jest tests * move tests to __tests__ folders * add jest types to root tsconfig * fix tsconfig include excludes * .to.equal -> toEqual * .true -> .toBe(true) * .to.deep.equal -> .toEqual * .to.exist -> .toBeDefined() * .to.contain -> .toMatch * .to.match -> .toMatch * to.be.undefined -> .toBeUndefined() * not.toBeDefined -> .toBeUndefined * bring integration test up to date with past changes * remove message from expect * .null -> .toBe(null) * expect.fail -> done.fail * callsFake -> jest.fn * mocha mock calls -> jest * .not.to.exist -> .toBeUndefined() * callCount -> mocks.calls.length * returns -> jest.fn() * .equals -> .toEqual * fix relative imports * remove string in expects and place as comment * remove Fibers from runQuery * restore -> mockRestore * before -> beforeAll * after -> afterAll * fix async_hooks test and Promise await * remove jest from testsuite package json * remove unnecessary apollo-server-env setup * add start of cloudflare tests * this.timeout -> timeout argument * express: fix relative require * import gql tag properly * .to.throw -> .toThrow * .to.be.instanceof -> .toBeInstanceOf * remove console log check test * done(Error) -> done.fail(Error) * done -> done.fail * change port numbers, since jest runs in parallel * fix toBeUndefined for null checks * make engine port unique in testsuite * make data source rest endpoint port unique * add coverage scripts * travis npm script -> cricle script * make engine port random * change ports to not conflict across integrations * increase node version for apollo-server-hapi * add node versioning to prevent hapi tests from running * move jest dependencies to the root package.json * make hapi port unique * fix port reference in hapi tests
36 lines
964 B
JSON
36 lines
964 B
JSON
{
|
|
"name": "graphql-extensions",
|
|
"version": "0.1.0",
|
|
"description": "Add extensions to GraphQL servers",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rm -rf dist",
|
|
"compile": "tsc",
|
|
"lint": "prettier -l 'src/**/*.ts' && tslint -p tsconfig.json 'src/**/*.ts'",
|
|
"lint-fix": "prettier --write 'src/**/*.ts' && tslint --fix -p tsconfig.json 'src/**/*.ts'",
|
|
"prepublish": "npm run clean && npm run compile",
|
|
"watch": "tsc -w"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "apollographql/graphql-extensions"
|
|
},
|
|
"author": "Martijn Walraven <martijn@martijnwalraven.com>",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=6.0"
|
|
},
|
|
"dependencies": {
|
|
"apollo-server-env": "2.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "0.10.x - 0.13.x"
|
|
},
|
|
"devDependencies": {
|
|
"@types/graphql": "0.13.3",
|
|
"@types/node": "10.5.4",
|
|
"graphql": "0.13.2",
|
|
"tslint": "5.11.0"
|
|
}
|
|
}
|