Skip to content

Commit

Permalink
Disable code coverage threshold (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
avidit authored Oct 17, 2022
1 parent c2f6ea4 commit 4320f27
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ jobs:
uses: zgosalvez/github-actions-report-lcov@v1
with:
coverage-files: coverage/lcov.info
minimum-coverage: 50
# minimum-coverage: 50
11 changes: 11 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": [
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint",
],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class App extends React.Component {
});
}

//This methos is called when the loading is done from Dynamo side
//This method is called when the loading is done from Dynamo side
setLoadingDone() {
this.setState({
loadingDone: true
Expand Down
2 changes: 1 addition & 1 deletion src/Dynamic.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Dynamic extends React.Component {
return (
<div className='dynamicOptions'>
<div >
Dynamo core {this.state.dynamoVersion}
Dynamo core {this.state.dynamoVersion}
</div>
<div>
<div className='progress-bar-container'>
Expand Down

0 comments on commit 4320f27

Please sign in to comment.