Skip to content

Commit 9c9abbe

Browse files
authored
Merge pull request #480 from ali-ince/2.0-tx-commit-rollback
Improve error messages and objects around Transaction commit/rollback
2 parents c64e52c + 981c311 commit 9c9abbe

File tree

119 files changed

+14086
-8881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

119 files changed

+14086
-8881
lines changed

.babelrc

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
]
66
],
77
"plugins": [
8-
"@babel/plugin-transform-runtime"
9-
]
8+
"@babel/plugin-transform-runtime",
9+
],
10+
"env": {
11+
"test": {
12+
"plugins": [
13+
"istanbul"
14+
]
15+
}
16+
}
1017
}

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@ node_modules
1111
docs/build
1212
.npmrc
1313
*.iml
14-
/lib
14+
/lib
15+
.nyc_output
16+
coverage
17+
.vscode
18+
*.code-workspace

.nycrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "@istanbuljs/nyc-config-babel",
3+
"reporter": ["text", "lcov"]
4+
}

0 commit comments

Comments
 (0)