Skip to content

Commit 901c8c5

Browse files
Merge branch 'develop' into fix/popover-overlay
2 parents 60d401b + 4d2c1ff commit 901c8c5

12 files changed

+38
-11
lines changed

development/ts-migration-dashboard/app/styles/custom-elements.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
Disabling Stylelint's hex color rule here because the TypeScript migration dashboard, being external to the main app, doesn't use design tokens.
3+
*/
4+
/* stylelint-disable color-no-hex */
15
:root {
26
--blue-gray-350: hsl(209deg 13.7% 62.4%);
37
--blue-gray-100: hsl(209.8deg 16.5% 89%);

development/ts-migration-dashboard/app/styles/tippy.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/*
2+
Disabling Stylelint's hex color rule here because the TypeScript migration dashboard, being external to the main app, doesn't use design tokens.
3+
*/
4+
/* stylelint-disable color-no-hex */
15
.tippy-touch {
26
cursor: pointer !important;
37
}

test/e2e/tests/ppom-blockaid-alert-erc20-approval.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ async function mockInfura(mockServer) {
210210
}
211211

212212
describe('PPOM Blockaid Alert - Malicious ERC20 Approval @no-mmi', function () {
213-
it('should show banner alert', async function () {
213+
// eslint-disable-next-line mocha/no-skipped-tests
214+
it.skip('should show banner alert', async function () {
214215
await withFixtures(
215216
{
216217
dapp: true,

test/e2e/tests/ppom-blockaid-alert-erc20-transfer.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,8 @@ async function mockInfura(mockServer) {
161161
}
162162

163163
describe('PPOM Blockaid Alert - Malicious ERC20 Transfer @no-mmi', function () {
164-
it('should show banner alert', async function () {
164+
// eslint-disable-next-line mocha/no-skipped-tests
165+
it.skip('should show banner alert', async function () {
165166
await withFixtures(
166167
{
167168
dapp: true,

test/e2e/tests/ppom-blockaid-alert-networks-support.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ async function mockInfuraWithMaliciousResponses(mockServer) {
4747
}
4848

4949
describe('PPOM Blockaid Alert - Multiple Networks Support @no-mmi', function () {
50-
it('should show banner alert after switchinig to another supported network', async function () {
50+
// eslint-disable-next-line mocha/no-skipped-tests
51+
it.skip('should show banner alert after switchinig to another supported network', async function () {
5152
await withFixtures(
5253
{
5354
dapp: true,

test/e2e/tests/ppom-blockaid-alert-simple-send.spec.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ async function mockInfuraWithFailedResponses(mockServer) {
126126
* @see {@link https://wobbly-nutmeg-8a5.notion.site/MM-E2E-Testing-1e51b617f79240a49cd3271565c6e12d}
127127
*/
128128
describe('Simple Send Security Alert - Blockaid @no-mmi', function () {
129-
it('should not show security alerts for benign requests', async function () {
129+
// eslint-disable-next-line mocha/no-skipped-tests
130+
it.skip('should not show security alerts for benign requests', async function () {
130131
await withFixtures(
131132
{
132133
dapp: true,
@@ -158,7 +159,8 @@ describe('Simple Send Security Alert - Blockaid @no-mmi', function () {
158159
* 'malicious_domain'. Some other tests are found in other files:
159160
* e.g. test/e2e/flask/ppom-blockaid-alert-<name>.spec.js
160161
*/
161-
it('should show security alerts for malicious requests', async function () {
162+
// eslint-disable-next-line mocha/no-skipped-tests
163+
it.skip('should show security alerts for malicious requests', async function () {
162164
await withFixtures(
163165
{
164166
dapp: true,
@@ -201,7 +203,8 @@ describe('Simple Send Security Alert - Blockaid @no-mmi', function () {
201203
);
202204
});
203205

204-
it('should show "Request may not be safe" if the PPOM request fails to check transaction', async function () {
206+
// eslint-disable-next-line mocha/no-skipped-tests
207+
it.skip('should show "Request may not be safe" if the PPOM request fails to check transaction', async function () {
205208
await withFixtures(
206209
{
207210
dapp: true,

test/e2e/tests/ppom-blockaid-alert-trade-order-farming.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ async function mockInfura(mockServer) {
9090
}
9191

9292
describe('PPOM Blockaid Alert - Set Trade farming order @no-mmi', function () {
93-
it('should show banner alert', async function () {
93+
// eslint-disable-next-line mocha/no-skipped-tests
94+
it.skip('should show banner alert', async function () {
9495
await withFixtures(
9596
{
9697
dapp: true,

test/e2e/tests/ppom-blockaid-setApprovalForAll-farming.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ async function mockInfura(mockServer) {
248248
}
249249

250250
describe('PPOM Blockaid Alert - Set Approval to All @no-mmi', function () {
251-
it('should show banner alert', async function () {
251+
// eslint-disable-next-line mocha/no-skipped-tests
252+
it.skip('should show banner alert', async function () {
252253
await withFixtures(
253254
{
254255
dapp: true,

test/e2e/tests/ppom-blockaid-toggle-metrics.spec.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ async function mockServerCalls(mockServer) {
5252
}
5353

5454
describe('PPOM Blockaid Alert - Metrics @no-mmi', function () {
55-
it('Successfully track button toggle on/off', async function () {
55+
// eslint-disable-next-line mocha/no-skipped-tests
56+
it.skip('Successfully track button toggle on/off', async function () {
5657
await withFixtures(
5758
{
5859
dapp: true,

test/e2e/tests/ppom-toggle-settings.spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ const {
99
const FixtureBuilder = require('../fixture-builder');
1010

1111
describe('PPOM Settings @no-mmi', function () {
12-
it('should not show the PPOM warning when toggle is off', async function () {
12+
// eslint-disable-next-line mocha/no-skipped-tests
13+
it.skip('should not show the PPOM warning when toggle is off', async function () {
1314
await withFixtures(
1415
{
1516
dapp: true,
@@ -47,7 +48,8 @@ describe('PPOM Settings @no-mmi', function () {
4748
);
4849
});
4950

50-
it('should show the PPOM warning when the toggle is on', async function () {
51+
// eslint-disable-next-line mocha/no-skipped-tests
52+
it.skip('should show the PPOM warning when the toggle is on', async function () {
5153
await withFixtures(
5254
{
5355
dapp: true,

0 commit comments

Comments
 (0)