difftreelog
tests: fix solc has any + revert skipping in transfer
in: master
3 files changed
tests/src/eth/util/playgrounds/unique.dev.d.tsdiffbeforeafterbothno content
tests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth--- a/tests/src/eth/util/playgrounds/unique.dev.ts
+++ b/tests/src/eth/util/playgrounds/unique.dev.ts
@@ -2,6 +2,8 @@
// SPDX-License-Identifier: Apache-2.0
/* eslint-disable function-call-argument-newline */
+// eslint-disable-next-line @typescript-eslint/triple-slash-reference
+/// <reference path="unique.dev.d.ts" />
import {readFile} from 'fs/promises';
tests/src/transfer.test.tsdiffbeforeafterboth--- a/tests/src/transfer.test.ts
+++ b/tests/src/transfer.test.ts
@@ -23,7 +23,7 @@
chai.use(chaiAsPromised);
const expect = chai.expect;
-describe.skip('Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
+describe('Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
let alice: IKeyringPair;
let bob: IKeyringPair;
@@ -116,7 +116,7 @@
});
});
-describe.skip('Negative Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
+describe('Negative Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
let alice: IKeyringPair;
let bob: IKeyringPair;