• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Zaptyp / spotify-web-api-node / 13001972650

28 Jan 2025 01:44AM UTC coverage: 95.264%. Remained the same
13001972650

Pull #8

travis-ci

web-flow
Bump actions/setup-node from 4.1.0 to 4.2.0

Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4.1.0 to 4.2.0.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v4.1.0...v4.2.0)

---
updated-dependencies:
- dependency-name: actions/setup-node
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #8: Bump actions/setup-node from 4.1.0 to 4.2.0

170 of 185 branches covered (91.89%)

Branch coverage included in aggregate %.

353 of 364 relevant lines covered (96.98%)

70.25 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/src/webapi-request.js
1
'use strict';
2

3
var Request = require('./base-request');
4✔
4

5
var DEFAULT_HOST = 'api.spotify.com',
4✔
6
  DEFAULT_PORT = 443,
4✔
7
  DEFAULT_SCHEME = 'https';
4✔
8

9
module.exports.builder = function (accessToken) {
4✔
10
  return Request.builder()
260✔
11
    .withHost(DEFAULT_HOST)
12
    .withPort(DEFAULT_PORT)
13
    .withScheme(DEFAULT_SCHEME)
14
    .withAuth(accessToken);
15
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc