12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
|
|
// Copyright (C) 2021-2022 Intel Corporation
|
||
|
|
//
|
||
|
|
// SPDX-License-Identifier: MIT
|
||
|
|
|
||
|
|
Cypress.Commands.add(
|
||
|
|
'compareImages',
|
||
|
|
(imgBase, imgAfterChanges) => cy.task('compareImages', {
|
||
|
|
imgBase,
|
||
|
|
imgAfterChanges,
|
||
|
|
}),
|
||
|
|
);
|