Skip to content

Commit

Permalink
re-enable skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kostysh committed Feb 26, 2020
1 parent 52de5e4 commit 42eb6ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/helpers/deposit.js
Expand Up @@ -101,7 +101,7 @@ module.exports.submitWithdrawalRequest = async (
'withdrawTime',
p => {
withdrawTime = p;
(toBN(p)).should.eq.BN(toBN(timeBefore).add(toBN(delay)))
(toBN(p)).should.eq.BN(toBN(timeBefore).add(toBN(delay)));
}
]
]);
Expand Down
10 changes: 5 additions & 5 deletions test/orgid.js
Expand Up @@ -83,7 +83,7 @@ contract('OrgId', accounts => {
.send({ from: orgIdOwner });
});

describe.skip('Upgradeability behaviour', () => {
describe('Upgradeability behaviour', () => {

it('should upgrade proxy and reveal a new function and interface', async () => {
orgId = await project.upgradeProxy(
Expand All @@ -107,7 +107,7 @@ contract('OrgId', accounts => {
});
});

describe.skip('Ownable behaviour', () => {
describe('Ownable behaviour', () => {

describe('#transferOwnership(address)', () => {

Expand Down Expand Up @@ -161,7 +161,7 @@ contract('OrgId', accounts => {
});
});

describe.skip('ERC165 interfaces', () => {
describe('ERC165 interfaces', () => {

it('should support IERC165 interface', async () => {
(
Expand Down Expand Up @@ -196,7 +196,7 @@ contract('OrgId', accounts => {
});
});

describe.skip('OrgId methods', () => {
describe('OrgId methods', () => {

describe('#createOrganization(bytes32,string,bytes32)', () => {

Expand Down Expand Up @@ -666,7 +666,7 @@ contract('OrgId', accounts => {
});
});

describe.skip('OrgId hierarchy methods', () => {
describe('OrgId hierarchy methods', () => {
let id;

beforeEach(async () => {
Expand Down

0 comments on commit 42eb6ab

Please sign in to comment.