UNPKG
@itentialopensource/email-notification
Version:
latest (0.0.19-2023.1.3)
0.0.19-2023.1.3
0.0.18
0.0.18-2023.1.2
0.0.17
0.0.17-2023.1.1
0.0.17-2022.1.2
0.0.16
0.0.16-2023.1.0
0.0.16-2022.1.1
[Deprecated] Send Email Notifications
@itentialopensource/email-notification
/
test
/
cypress
/
plugins
/
index.js
13 lines
(9 loc)
•
294 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
const
iapCypressLibrary =
require
(
'@itential-tools/iap-cypress-testing-library'
);
module
.
exports
=
(
on, config
) =>
{
return
new
Promise
(
(
resolve
) =>
{
// eslint-disable-next-line no-shadow
iapCypressLibrary
(config).
then
(
(
config
) =>
{
return
resolve
(config); }); }); };