|
131 | 131 | "check:bench": "npm --prefix test/benchmarks/driver_bench start",
|
132 | 132 | "check:coverage": "nyc npm run test:all",
|
133 | 133 | "check:integration-coverage": "nyc npm run check:test",
|
134 |
| - "check:lambda": "mocha --config test/mocha_lambda.js test/integration/node-specific/examples/handler.test.js", |
135 |
| - "check:lambda:aws": "mocha --config test/mocha_lambda.js test/integration/node-specific/examples/aws_handler.test.js", |
| 134 | + "check:lambda": "nyc mocha --config test/mocha_lambda.js test/integration/node-specific/examples/handler.test.js", |
| 135 | + "check:lambda:aws": "nyc mocha --config test/mocha_lambda.js test/integration/node-specific/examples/aws_handler.test.js", |
136 | 136 | "check:lint": "npm run build:dts && npm run check:dts && npm run check:eslint && npm run check:tsd",
|
137 | 137 | "check:eslint": "npm run build:dts && ESLINT_USE_FLAT_CONFIG=false eslint -v && ESLINT_USE_FLAT_CONFIG=false eslint --max-warnings=0 --ext '.js,.ts' src test",
|
138 | 138 | "check:tsd": "tsd --version && tsd",
|
139 | 139 | "check:dependencies": "mocha test/action/dependency.test.ts",
|
140 | 140 | "check:dts": "node ./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd",
|
141 | 141 | "check:search-indexes": "nyc mocha --config test/mocha_mongodb.js test/manual/search-index-management.prose.test.ts",
|
142 | 142 | "check:test": "mocha --config test/mocha_mongodb.js test/integration",
|
143 |
| - "check:unit": "mocha test/unit", |
| 143 | + "check:unit": "nyc mocha test/unit", |
144 | 144 | "check:ts": "node ./node_modules/typescript/bin/tsc -v && node ./node_modules/typescript/bin/tsc --noEmit",
|
145 |
| - "check:atlas": "mocha --config test/manual/mocharc.js test/manual/atlas_connectivity.test.ts", |
146 |
| - "check:resource-management": "mocha --config test/manual/mocharc.js test/manual/resource_management.test.ts", |
147 |
| - "check:drivers-atlas-testing": "mocha --config test/mocha_mongodb.js test/atlas/drivers_atlas_testing.test.ts", |
148 |
| - "check:adl": "mocha --config test/mocha_mongodb.js test/manual/atlas-data-lake-testing", |
| 145 | + "check:atlas": "nyc mocha --config test/manual/mocharc.js test/manual/atlas_connectivity.test.ts", |
| 146 | + "check:resource-management": "nyc mocha --config test/manual/mocharc.js test/manual/resource_management.test.ts", |
| 147 | + "check:drivers-atlas-testing": "nyc mocha --config test/mocha_mongodb.js test/atlas/drivers_atlas_testing.test.ts", |
| 148 | + "check:adl": "nyc mocha --config test/mocha_mongodb.js test/manual/atlas-data-lake-testing", |
149 | 149 | "check:aws": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_aws.test.ts",
|
150 |
| - "check:oidc-auth": "mocha --config test/mocha_mongodb.js test/integration/auth/auth.spec.test.ts", |
151 |
| - "check:oidc-test": "mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc.prose.test.ts", |
152 |
| - "check:oidc-azure": "mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_azure.prose.05.test.ts", |
153 |
| - "check:oidc-gcp": "mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_gcp.prose.06.test.ts", |
154 |
| - "check:oidc-k8s": "mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_k8s.prose.07.test.ts", |
| 150 | + "check:oidc-auth": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/auth.spec.test.ts", |
| 151 | + "check:oidc-test": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc.prose.test.ts", |
| 152 | + "check:oidc-azure": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_azure.prose.05.test.ts", |
| 153 | + "check:oidc-gcp": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_gcp.prose.06.test.ts", |
| 154 | + "check:oidc-k8s": "nyc mocha --config test/mocha_mongodb.js test/integration/auth/mongodb_oidc_k8s.prose.07.test.ts", |
155 | 155 | "check:kerberos": "nyc mocha --config test/manual/mocharc.js test/manual/kerberos.test.ts",
|
156 |
| - "check:tls": "mocha --config test/manual/mocharc.js test/manual/tls_support.test.ts", |
| 156 | + "check:tls": "nyc mocha --config test/manual/mocharc.js test/manual/tls_support.test.ts", |
157 | 157 | "check:ldap": "nyc mocha --config test/manual/mocharc.js test/manual/ldap.test.ts",
|
158 |
| - "check:socks5": "mocha --config test/manual/mocharc.js test/manual/socks5.test.ts", |
159 |
| - "check:csfle": "mocha --config test/mocha_mongodb.js test/integration/client-side-encryption", |
160 |
| - "check:snappy": "mocha test/unit/assorted/snappy.test.js", |
161 |
| - "check:x509": "mocha test/manual/x509_auth.test.ts", |
| 158 | + "check:socks5": "nyc mocha --config test/manual/mocharc.js test/manual/socks5.test.ts", |
| 159 | + "check:csfle": "nyc mocha --config test/mocha_mongodb.js test/integration/client-side-encryption", |
| 160 | + "check:snappy": "nyc mocha test/unit/assorted/snappy.test.js", |
| 161 | + "check:x509": "nyc mocha test/manual/x509_auth.test.ts", |
162 | 162 | "fix:eslint": "npm run check:eslint -- --fix",
|
163 | 163 | "prepare": "node etc/prepare.js",
|
164 | 164 | "preview:docs": "ts-node etc/docs/preview.ts",
|
|
0 commit comments