Fix JS equality rules in some specs
This commit is contained in:
parent
4376be84ce
commit
828e1573a7
1 changed files with 2 additions and 2 deletions
|
@ -26,8 +26,8 @@ describe('Pipelines Table Row', () => {
|
|||
const pipelines = getJSONFixture(jsonFixtureName).pipelines;
|
||||
|
||||
pipeline = pipelines.find(p => p.user !== null && p.commit !== null);
|
||||
pipelineWithoutAuthor = pipelines.find(p => p.user == null && p.commit !== null);
|
||||
pipelineWithoutCommit = pipelines.find(p => p.user == null && p.commit == null);
|
||||
pipelineWithoutAuthor = pipelines.find(p => p.user === null && p.commit !== null);
|
||||
pipelineWithoutCommit = pipelines.find(p => p.user === null && p.commit === null);
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
|
|
Loading…
Reference in a new issue