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