GithubHelp home page GithubHelp logo

asw2223_0's People

Contributors

cidinene avatar hugolebredo avatar labra avatar pglez82 avatar

Stargazers

 avatar

Watchers

 avatar  avatar

asw2223_0's Issues

Code coverage problem [Solution]

Code coverage was computed not taking into account the restapi code coverage. This was due to two reasons:

  1. A bug in jest (the test runner), that saves the file paths with relative paths instead of absolute. This is a problem in the restapi because the tests were stored in a folder 'tests'.
  2. Having two github actions jobs for executing the unitary tests was actually making two different test reports, that when uploaded to SonarCloud, were being overwritten.

In order to solve these two issues, the following changes need to be made:

  1. Take outside the tests directory the tests for the restapi. Update the package.json of this module accordingly.
  2. Replace the two github actions jobs for the unit tests in only one. This job should install the dependencies and run the tests for both modules (or more if it is the case in your project). When doing this, we only upload to sonarcloud one test coverage report so everything will work as expected.
  unit-tests:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - uses: actions/setup-node@v3
      with:
        node-version: 18
    - run: npm --prefix webapp ci
    - run: npm --prefix restapi ci
    - run: npm --prefix webapp test --coverage --watchAll
    - run: npm --prefix restapi test --coverage --watchAll
    - name: Analyze with SonarCloud
      uses: sonarsource/sonarcloud-github-action@master
      env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.