mirror of
https://github.com/embarklabs/embark.git
synced 2025-01-12 06:44:37 +00:00
remove data parameter
This commit is contained in:
parent
c1590d0b48
commit
1c6df9db8d
@ -83,7 +83,6 @@ module.exports = {
|
|||||||
mocha.suite.timeout(0);
|
mocha.suite.timeout(0);
|
||||||
|
|
||||||
mocha.suite.beforeAll('Wait for deploy', (done) => {
|
mocha.suite.beforeAll('Wait for deploy', (done) => {
|
||||||
console.dir("runnning wait for deploy");
|
|
||||||
global.embark.onReady(() => {
|
global.embark.onReady(() => {
|
||||||
done();
|
done();
|
||||||
});
|
});
|
||||||
|
@ -16,7 +16,7 @@ contract("SimpleStorage Deploy", function () {
|
|||||||
let SimpleStorageInstance;
|
let SimpleStorageInstance;
|
||||||
|
|
||||||
before(async function() {
|
before(async function() {
|
||||||
SimpleStorageInstance = await SimpleStorage.deploy({data: SimpleStorage.options.data, arguments: [150]}).send();
|
SimpleStorageInstance = await SimpleStorage.deploy({arguments: [150]}).send();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should set constructor value", async function () {
|
it("should set constructor value", async function () {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user