@@ -106,7 +106,7 @@ contract('LifToken', function (accounts) {
106
106
} ) ;
107
107
108
108
_ . forEach ( [ 0 , 1 ] , function ( tokens ) {
109
- it . skip ( 'should return correct balances after transfer ERC827 with ' + tokens + ' tokens and show the event on receiver contract' , async function ( ) {
109
+ it ( 'should return correct balances after transfer ERC827 with ' + tokens + ' tokens and show the event on receiver contract' , async function ( ) {
110
110
let message = await Message . new ( ) ;
111
111
help . abiDecoder . addABI ( Message . _json . abi ) ;
112
112
@@ -135,7 +135,7 @@ contract('LifToken', function (accounts) {
135
135
} ) ;
136
136
137
137
_ . forEach ( [ 0 , 1 ] , function ( tokens ) {
138
- it . skip ( 'should return correct balances after transferFrom ERC827 with ' + tokens + ' tokens and show the event on receiver contract' , async function ( ) {
138
+ it ( 'should return correct balances after transferFrom ERC827 with ' + tokens + ' tokens and show the event on receiver contract' , async function ( ) {
139
139
let message = await Message . new ( ) ;
140
140
help . abiDecoder . addABI ( Message . _json . abi ) ;
141
141
@@ -160,7 +160,7 @@ contract('LifToken', function (accounts) {
160
160
} ) ;
161
161
} ) ;
162
162
163
- it . skip ( 'should return correct balances after approve and show the event on receiver contract' , async function ( ) {
163
+ it ( 'should return correct balances after approve and show the event on receiver contract' , async function ( ) {
164
164
let message = await Message . new ( ) ;
165
165
help . abiDecoder . addABI ( Message . _json . abi ) ;
166
166
@@ -180,7 +180,7 @@ contract('LifToken', function (accounts) {
180
180
await help . checkToken ( token , accounts , 125 , [ 40 , 30 , 20 , 10 , 0 ] ) ;
181
181
} ) ;
182
182
183
- it . skip ( 'should fail on approve ERC827 when spender is the same LifToken contract' , async function ( ) {
183
+ it ( 'should fail on approve ERC827 when spender is the same LifToken contract' , async function ( ) {
184
184
let message = await Message . new ( ) ;
185
185
let data = message . contract . showMessage . getData ( web3 . toHex ( 123456 ) , 666 , 'Transfer Done' ) ;
186
186
@@ -196,7 +196,7 @@ contract('LifToken', function (accounts) {
196
196
}
197
197
} ) ;
198
198
199
- it . skip ( 'should fail inside approve ERC827' , async function ( ) {
199
+ it ( 'should fail inside approve ERC827' , async function ( ) {
200
200
let message = await Message . new ( ) ;
201
201
help . abiDecoder . addABI ( Message . _json . abi ) ;
202
202
@@ -220,7 +220,7 @@ contract('LifToken', function (accounts) {
220
220
await help . checkToken ( token , accounts , 125 , [ 40 , 30 , 20 , 10 , 0 ] ) ;
221
221
} ) ;
222
222
223
- it . skip ( 'should fail inside transfer ERC827' , async function ( ) {
223
+ it ( 'should fail inside transfer ERC827' , async function ( ) {
224
224
let message = await Message . new ( ) ;
225
225
help . abiDecoder . addABI ( Message . _json . abi ) ;
226
226
@@ -244,7 +244,7 @@ contract('LifToken', function (accounts) {
244
244
await help . checkToken ( token , accounts , 125 , [ 40 , 30 , 20 , 10 , 0 ] ) ;
245
245
} ) ;
246
246
247
- it . skip ( 'should fail inside transferFrom ERC827' , async function ( ) {
247
+ it ( 'should fail inside transferFrom ERC827' , async function ( ) {
248
248
let message = await Message . new ( ) ;
249
249
help . abiDecoder . addABI ( Message . _json . abi ) ;
250
250
@@ -272,7 +272,7 @@ contract('LifToken', function (accounts) {
272
272
await help . checkToken ( token , accounts , 125 , [ 40 , 30 , 20 , 10 , 0 ] ) ;
273
273
} ) ;
274
274
275
- it . skip ( 'should fail transfer ERC827 when using LifToken contract address as receiver' , async function ( ) {
275
+ it ( 'should fail transfer ERC827 when using LifToken contract address as receiver' , async function ( ) {
276
276
let message = await Message . new ( ) ;
277
277
let data = message . contract . showMessage . getData ( web3 . toHex ( 123456 ) , 666 , 'Transfer Done' ) ;
278
278
@@ -290,7 +290,7 @@ contract('LifToken', function (accounts) {
290
290
await help . checkToken ( token , accounts , 125 , [ 40 , 30 , 20 , 10 , 0 ] ) ;
291
291
} ) ;
292
292
293
- it . skip ( 'should fail transferFrom ERC827 when using LifToken contract address as receiver' , async function ( ) {
293
+ it ( 'should fail transferFrom ERC827 when using LifToken contract address as receiver' , async function ( ) {
294
294
let message = await Message . new ( ) ;
295
295
await token . approve ( accounts [ 1 ] , help . lif2LifWei ( 1 ) , { from : accounts [ 3 ] } ) ;
296
296
let data = message . contract . showMessage . getData ( web3 . toHex ( 123456 ) , 666 , 'Transfer Done' ) ;
0 commit comments