()
| 3 | import testSharedMethods from '../Exchange/base/test.sharedMethods.js'; |
| 4 | |
| 5 | function testArrayConcat () { |
| 6 | |
| 7 | const exchange = new ccxt.Exchange ({ |
| 8 | 'id': 'sampleexchange', |
| 9 | }); |
| 10 | |
| 11 | testSharedMethods.assertDeepEqual (exchange, undefined, 'testArrayConcat', exchange.arrayConcat ([ 'b' ], [ 'a', 'c' ]), [ 'b', 'a', 'c' ]); |
| 12 | // todo: other cases |
| 13 | } |
| 14 | |
| 15 | export default testArrayConcat; |
no test coverage detected
searching dependent graphs…