aboutsummaryrefslogtreecommitdiffstats
path: root/test/0x.js_test.ts
Commit message (Expand)AuthorAgeFilesLines
* Upgrade bignumber to the version with native typings and remove typingsLeonid Logvinov2017-10-261-1/+1
* Revert "Reduce final bundle size by 11% (82kB)"Leonid2017-10-241-1/+1
* Include only used lodash functionsLeonid Logvinov2017-10-181-1/+1
* Make logs fetching and sunscriptions more type-safeLeonid Logvinov2017-10-131-3/+3
* Add tests for contracts address configLeonid Logvinov2017-09-181-2/+27
* Fix log decoder to return correct typesLeonid Logvinov2017-09-061-5/+3
* Fix type errorLeonid Logvinov2017-09-061-1/+2
* Fix a typo in test nameLeonid Logvinov2017-09-061-1/+1
* Add lifecycle methodsLeonid Logvinov2017-09-061-0/+8
* Add test for logs decoding in awaitTransactionMinedAsyncLeonid Logvinov2017-09-061-0/+20
* Reject checksummed addressesLeonid Logvinov2017-08-221-1/+1
* Remove unused importsLeonid Logvinov2017-07-261-1/+0
* Make getOrderHashHex staticLeonid Logvinov2017-07-121-1/+1
* Migrate to using a single Exchange contractLeonid Logvinov2017-07-121-27/+4
* Modify signOrderHashAsync to parse the signatureHex string as V + R + S AND R...Fabio Berger2017-07-081-9/+3
* Remove space after `it` keywork in testsFabio Berger2017-07-081-3/+3
* Fix comments to use web3 provider instead of web3 instanceLeonid Logvinov2017-07-071-1/+1
* Move zeroEx.exchange.getAvailableContractAddressesAsync to zeroEx.getAvailabl...Leonid Logvinov2017-07-061-11/+23
* Make it clear that we are using a fake address in testsLeonid Logvinov2017-06-301-2/+2
* Fix a typo in a nameLeonid Logvinov2017-06-301-2/+2
* Make getOrderHashHex a non-async functionLeonid Logvinov2017-06-301-13/+2
* Allow multiple exchange versions t be functional at the same timeLeonid Logvinov2017-06-271-6/+12
* Revert "Use different lodash import syntax which allows to include only used ...Leonid2017-06-221-5/+4
* Fall back to import x = require() syntaxLeonid Logvinov2017-06-211-2/+2
* Use different lodash import syntax which allows to include only used functionsLeonid Logvinov2017-06-211-4/+5
* Fix bug in 0x.js tests when passing Web3 instead of Web3 ProviderLeonid Logvinov2017-06-151-1/+1
* Make ZeroEx constructor accept Web3Provider instead of Web3 instanceLeonid Logvinov2017-06-151-3/+3
* Remove types that are not used in public interface from export and rename Eve...Leonid Logvinov2017-06-141-1/+1
* Introduce index.ts file which defines public interfaceLeonid Logvinov2017-06-131-3/+1
* Change main file name from 0x.js.ts to 0x.tsLeonid Logvinov2017-06-121-1/+1
* Fix some testsLeonid Logvinov2017-06-101-12/+12
* Prefix private vars with _Leonid Logvinov2017-06-101-6/+6
* Fix isValidSignature testsFabio Berger2017-06-091-16/+18
* Merge pull request #48 from 0xProject/interfaceTweaksLeonid2017-06-081-2/+2
|\
| * Make web3Wrapper protected instead of publicFabio Berger2017-06-081-2/+2
* | Fix linter errorLeonid Logvinov2017-06-081-3/+3
* | Rewrite isValidSignature testsLeonid Logvinov2017-06-081-51/+25
|/
* add `hex` to function and variable name for clarityFabio Berger2017-06-071-1/+1
* Merge pull request #39 from 0xProject/senderAccountLeonid2017-06-061-12/+10
|\
| * Last round of renamingsLeonid Logvinov2017-06-061-6/+6
| * Rename accounts to addresesLeonid Logvinov2017-06-061-1/+1
| * Remove message param from beforeLeonid Logvinov2017-06-061-1/+1
| * Make methods accept senderAccountLeonid Logvinov2017-06-051-12/+10
* | Address feedbackLeonid Logvinov2017-06-061-2/+2
* | Add chai_setupLeonid Logvinov2017-06-051-6/+3
|/
* Merge branch 'master' into addEventSubscriptionsFabio Berger2017-06-031-0/+1
|\
| * Add includeStack config to chai setup so that we get stackTracesFabio Berger2017-06-031-0/+1
* | Implement zeroEx.exchange.subscribeAsync made sure to clean up subscriptions ...Fabio Berger2017-06-021-3/+3
|/
* Fix getOrderHashAsync testFabio Berger2017-06-011-0/+13
* Stop passing exchangeAddress into getOrderHash and instead get it from the ar...Fabio Berger2017-06-011-21/+22
* remove commentFabio Berger2017-06-011-1/+0
* Fix testsLeonid Logvinov2017-06-011-8/+2
* Fix linter errorsLeonid Logvinov2017-06-011-14/+16
* Refactor getOrderHash to accept order as an objectLeonid Logvinov2017-05-301-28/+19
* use .be.undefined instead of .be.an('undefined')Fabio Berger2017-05-301-4/+4
* Refactor exchangeWrapper and tokenRegistryWrapper to use contract getter that...Fabio Berger2017-05-301-2/+2
* Also test that web3Wrapper nested under tokenRegistryWrapper has updated prov...Fabio Berger2017-05-301-2/+4
* add assertions that contractInstances are not undefined before provider updateFabio Berger2017-05-301-0/+2
* Also instantiate tokenRegistry contract instanceFabio Berger2017-05-301-1/+2
* remove unused importFabio Berger2017-05-301-1/+0
* Make tokenRegistry contract instantiation lazy and clear it on provider updateFabio Berger2017-05-301-1/+2
* Add tests for setProviderFabio Berger2017-05-301-0/+23
* make web3Wrapper a private instance variableFabio Berger2017-05-301-4/+4
* Fix typosFabio Berger2017-05-291-2/+2
* empty stubs array before next test runsFabio Berger2017-05-291-0/+1
* Merge branch 'master' into addSignOrderHashAndTestsFabio Berger2017-05-291-1/+1
|\
| * Merge pull request #16 from 0xProject/umd-testsFabio Berger2017-05-291-1/+1
| |\
| | * Use constants from test utilsLeonid Logvinov2017-05-291-1/+1
* | | Use disable-next-line instead of disable and always put rule that is being di...Fabio Berger2017-05-291-4/+2
* | | Implement tests for signOrderHashAsync that test the logic for Parity < v1.6....Fabio Berger2017-05-291-0/+72
|/ /
* / don't use uppercase for constant variable unless it's global to the entire fileFabio Berger2017-05-291-3/+3
|/
* Fix importsLeonid Logvinov2017-05-291-2/+2
* Merge branch 'master' of github.com:0xProject/0x.jsFabio Berger2017-05-291-2/+3
* Postfix test files with `_test`Fabio Berger2017-05-261-0/+160