@toptal/davinci-qa 15.1.3 → 15.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 15.1.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1937](https://github.com/toptal/davinci/pull/1937) [`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f) Thanks [@dmaklygin](https://github.com/dmaklygin)! - ---
|
|
8
|
+
|
|
9
|
+
- apply identical formatting and success messages to all command logs.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`8b6806a6`](https://github.com/toptal/davinci/commit/8b6806a6ad1ef3f190e1e9e6a287aed12970b27f)]:
|
|
12
|
+
- @toptal/davinci-cli-shared@2.2.3
|
|
13
|
+
|
|
3
14
|
## 15.1.3
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-qa",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.4",
|
|
4
4
|
"description": "QA package to test your application",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"@cypress/webpack-preprocessor": "^5.12.0",
|
|
53
53
|
"@testing-library/jest-dom": "^5.16.4",
|
|
54
54
|
"@testing-library/react": "^13.3.0",
|
|
55
|
-
"@toptal/davinci-cli-shared": "2.2.
|
|
55
|
+
"@toptal/davinci-cli-shared": "2.2.3",
|
|
56
56
|
"@types/jest": "^27.5.1",
|
|
57
57
|
"babel-jest": "^28.1.3",
|
|
58
58
|
"fs-extra": "^10.0.0",
|
|
@@ -5,7 +5,7 @@ import { runSync, print } from '@toptal/davinci-cli-shared'
|
|
|
5
5
|
const codeMetricsCommand = async options => {
|
|
6
6
|
const projectPackageJsonPath = path.join(process.cwd(), 'package.json')
|
|
7
7
|
|
|
8
|
-
print.
|
|
8
|
+
print.header('Running code metrics')
|
|
9
9
|
|
|
10
10
|
try {
|
|
11
11
|
const packageJson = JSON.parse(
|
|
@@ -27,7 +27,7 @@ export const integrationRunCommand = (
|
|
|
27
27
|
process.exit(1)
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
print.
|
|
30
|
+
print.header('Running integration tests')
|
|
31
31
|
|
|
32
32
|
const configPath = getCypressConfigPath()
|
|
33
33
|
const cypressReporterPath = files.getPackageFilePath(
|
|
@@ -10,7 +10,7 @@ import { getCIDefaultOptions } from '../utils/jest/ci-options.js'
|
|
|
10
10
|
export const createUnitTestCommandAction =
|
|
11
11
|
jest =>
|
|
12
12
|
async (testPathPattern = [], { anvilTag, ...jestOptions }) => {
|
|
13
|
-
print.
|
|
13
|
+
print.header('Running unit tests')
|
|
14
14
|
|
|
15
15
|
const currentRunningDir = process.cwd()
|
|
16
16
|
const jestConfigPath = files.getPackageFilePath(
|