git.delta.rocks / unique-network / refs/commits / e1baaf9b0769

difftreelog

tests: fix solc has any + revert skipping in transfer

Fahrrader2022-09-09parent: #6069e8a.patch.diff
in: master

3 files changed

addedtests/src/eth/util/playgrounds/unique.dev.d.tsdiffbeforeafterboth

no changes

modifiedtests/src/eth/util/playgrounds/unique.dev.tsdiffbeforeafterboth
2// SPDX-License-Identifier: Apache-2.02// SPDX-License-Identifier: Apache-2.0
33
4/* eslint-disable function-call-argument-newline */4/* eslint-disable function-call-argument-newline */
5// eslint-disable-next-line @typescript-eslint/triple-slash-reference
6/// <reference path="unique.dev.d.ts" />
57
6import {readFile} from 'fs/promises';8import {readFile} from 'fs/promises';
79
modifiedtests/src/transfer.test.tsdiffbeforeafterboth
23chai.use(chaiAsPromised);23chai.use(chaiAsPromised);
24const expect = chai.expect;24const expect = chai.expect;
2525
26describe.skip('Integration Test Transfer(recipient, collection_id, item_id, value)', () => {26describe('Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
27 let alice: IKeyringPair;27 let alice: IKeyringPair;
28 let bob: IKeyringPair;28 let bob: IKeyringPair;
2929
116 });116 });
117});117});
118118
119describe.skip('Negative Integration Test Transfer(recipient, collection_id, item_id, value)', () => {119describe('Negative Integration Test Transfer(recipient, collection_id, item_id, value)', () => {
120 let alice: IKeyringPair;120 let alice: IKeyringPair;
121 let bob: IKeyringPair;121 let bob: IKeyringPair;
122122