Skip to content

Commit

Permalink
Cambios para pruebas
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiomalv committed May 2, 2022
1 parent 08ab5b1 commit 782f4c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/asw2122.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npm ci
- run: npm test
- uses: codecov/codecov-action@v2
# - run: npm ci
# - run: npm test
# - uses: codecov/codecov-action@v2
unit-test-restapi:
runs-on: ubuntu-latest
defaults:
Expand Down
2 changes: 1 addition & 1 deletion restapi/tests/api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ describe('user ', () => {
dni: '12345678A'
}
const response: Response = await request(app).post('/signup').send(user).set('Accept', 'application/json');
expect(response.statusCode).toBe(412);
expect(response.statusCode).toBe(413);
});

/**
Expand Down

0 comments on commit 782f4c9

Please sign in to comment.