mozilla/web-ext

Convert test suite to use sinon assertions

Ouverte

#972 ouverte le 12 juin 2017

 (12 commentaires) (0 réaction) (0 personne assignée)JavaScript (380 forks)github user discovery
Hacktoberfestcomponent: code qualitycontrib: assignedcontrib: mentor assigned

Métriques du dépôt

Stars
 (3 089 étoiles)
Métriques de merge PR
 (Merge moyen 2j 14h) (17 PRs mergées en 30 j)

Description

Is this a feature request or a bug?

feature

What is the current behavior?

In the test suite we do things like this to check that stub objects are called correctly:

assert.ok(addonReload.called);
assert.equal(addonReload.firstCall.args[0].addonId,
  tempInstallResult.addon.id);

What is the expected or desired behavior?

It works but the failure messages could be better. Let's switch all of this code to sinon assertions instead.

The above test would be rewritten as:

sinon.assert.calledWith(
  addonReload, sinon.match({addonId: tempInstallResult.addon.id})
);

Guide contributeur