* Removes references to tslint in contract-wrappers which are obsoleted since https://github.com/0xProject/protocol/pull/584 * Remove tslint references in contracts/utils and test utils obsoleted by https://github.com/0xProject/protocol/pull/589 * Remove tslint references in contracts/zeroex and test utils obsoleted by https://github.com/0xProject/protocol/pull/587 * Remove other obsoleted tslint references * Update contributing guidelines with eslint * Fix prettier errors
11 lines
383 B
TypeScript
11 lines
383 B
TypeScript
import { expect } from '../../src/chai_setup';
|
|
import { blockchainTests, BlockchainTestsEnvironment } from '../../src/mocha_blockchain';
|
|
|
|
export function append(env: BlockchainTestsEnvironment): void {
|
|
blockchainTests('imported subtests', subtestsEnv => {
|
|
it('shares the same environment object', () => {
|
|
expect(subtestsEnv).to.eq(env);
|
|
});
|
|
});
|
|
}
|