-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
479 changed files
with
170,728 additions
and
199,239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
end_of_line = lf | ||
charset = utf-8 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
indent_size = 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,18 @@ | ||
/node_modules/ | ||
/package.json | ||
/package-lock.json | ||
/build | ||
utils/plasma-cy-utils/lib | ||
|
||
# Exclude package(-lock).json for all packages | ||
package.json | ||
package-lock.json | ||
|
||
# Exclude *.api.md | ||
packages/plasma-b2c/api/ | ||
packages/plasma-web/api/ | ||
packages/plasma-hope/api/ | ||
packages/plasma-core/api/ | ||
packages/plasma-asdk/api/ | ||
|
||
utils/plasma-cy-utils/lib | ||
|
||
# Exclude *.diff | ||
reports |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@salutejs/perftest-helpers", | ||
"version": "0.2.0", | ||
"version": "0.3.0-dev.0", | ||
"description": "Performance test job helpers", | ||
"author": "Salute Frontend Team <[email protected]>", | ||
"license": "MIT", | ||
|
@@ -37,4 +37,4 @@ | |
"lib", | ||
"actions" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 0 additions & 40 deletions
40
actions/perftest-helpers/src/modules/__snapshots__/updateDescription.test.ts.snap
This file was deleted.
Oops, something went wrong.
34 changes: 34 additions & 0 deletions
34
actions/perftest-helpers/src/modules/__snapshots__/writeComment.test.ts.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Jest Snapshot v1, https://goo.gl/fbAQLP | ||
|
||
exports[`perftest/writeComment getDescriptionTables should iterate through tasks, forming tables with rows 1`] = ` | ||
" | ||
**taskId1:** | ||
| Component | Diff | Base value | Current value | | ||
|:-:|:-:|:-:|:-:| | ||
row | ||
row | ||
**taskId2:** | ||
| Component | Diff | Base value | Current value | | ||
|:-:|:-:|:-:|:-:| | ||
row | ||
row | ||
row | ||
**taskId3:** | ||
| Component | Diff | Base value | Current value | | ||
|:-:|:-:|:-:|:-:| | ||
row | ||
" | ||
`; | ||
|
||
exports[`perftest/writeComment getReportDescription should return description markup with report 1`] = ` | ||
"<details><summary>Details</summary><br/> | ||
report | ||
</details>" | ||
`; | ||
|
||
exports[`perftest/writeComment getSubjectTaskResultTableRow should format the row 1`] = `"| subjectId | diff (percentage) | old | new1 |"`; |
Oops, something went wrong.