mirror of https://github.com/embarklabs/sggc.git
update to embark 3.1
This commit is contained in:
parent
cd57cd650a
commit
8e831f510f
|
@ -0,0 +1,16 @@
|
|||
module.exports = {
|
||||
default: {
|
||||
deployment: {
|
||||
host: "localhost",
|
||||
port: 8545,
|
||||
type: "rpc"
|
||||
},
|
||||
dappConnection: [
|
||||
"$WEB3",
|
||||
"http://localhost:8545"
|
||||
],
|
||||
gas: "auto",
|
||||
contracts: {
|
||||
}
|
||||
}
|
||||
};
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"default": {
|
||||
"deployment": {
|
||||
"host": "localhost",
|
||||
"port": 8545,
|
||||
"type": "rpc"
|
||||
},
|
||||
"dappConnection": [
|
||||
"$WEB3",
|
||||
"http://localhost:8545"
|
||||
],
|
||||
"gas": "auto",
|
||||
"contracts": {
|
||||
}
|
||||
}
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
"app": {},
|
||||
"buildDir": "build/",
|
||||
"config": {
|
||||
"contracts": "contracts.json",
|
||||
"contracts": "contracts.js",
|
||||
"blockchain": false,
|
||||
"storage": false,
|
||||
"communication": false,
|
||||
|
|
|
@ -10,6 +10,6 @@
|
|||
"homepage": "",
|
||||
"requires": true,
|
||||
"devDependencies": {
|
||||
"embark": "^3.0.6"
|
||||
"embark": "^3.1.5"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6,12 +6,16 @@
|
|||
*/
|
||||
|
||||
var testdata = require('../data/BrainFuck.json');
|
||||
const BrainFuck = require('Embark/contracts/BrainFuck');
|
||||
|
||||
describe("BrainFuck", function() {
|
||||
config({
|
||||
contracts: {
|
||||
BrainFuck: {}
|
||||
}
|
||||
});
|
||||
|
||||
contract("BrainFuck", function() {
|
||||
this.timeout(0);
|
||||
before(function(done) {
|
||||
EmbarkSpec.deployAll({"BrainFuck": {}}, () => { done() });
|
||||
});
|
||||
|
||||
testdata.vectors.forEach(function(v, i) {
|
||||
it("Passes test vector " + i, async function() {
|
||||
|
|
|
@ -6,12 +6,16 @@
|
|||
*/
|
||||
|
||||
var testdata = require('../data/HexDecoder.json');
|
||||
const HexDecoder = require('Embark/contracts/HexDecoder');
|
||||
|
||||
describe("HexDecoder", function() {
|
||||
config({
|
||||
contracts: {
|
||||
HexDecoder: {}
|
||||
}
|
||||
});
|
||||
|
||||
contract("HexDecoder", function() {
|
||||
this.timeout(0);
|
||||
before(function(done) {
|
||||
EmbarkSpec.deployAll({"HexDecoder": {}}, () => { done() });
|
||||
});
|
||||
|
||||
testdata.vectors.forEach(function(v, i) {
|
||||
it("Passes test vector " + i, async function() {
|
||||
|
|
|
@ -6,12 +6,16 @@
|
|||
*/
|
||||
|
||||
var testdata = require('../data/IndexOf.json');
|
||||
const IndexOf = require('Embark/contracts/IndexOf');
|
||||
|
||||
describe("IndexOf", function() {
|
||||
config({
|
||||
contracts: {
|
||||
IndexOf: {}
|
||||
}
|
||||
});
|
||||
|
||||
contract("IndexOf", function() {
|
||||
this.timeout(0);
|
||||
before(function(done) {
|
||||
EmbarkSpec.deployAll({"IndexOf": {}}, () => { done() });
|
||||
});
|
||||
|
||||
testdata.vectors.forEach(function(v, i) {
|
||||
it("Passes test vector " + i, async function() {
|
||||
|
|
12
test/Sort.js
12
test/Sort.js
|
@ -6,12 +6,16 @@
|
|||
*/
|
||||
|
||||
var testdata = require('../data/Sort.json');
|
||||
const Sort = require('Embark/contracts/Sort');
|
||||
|
||||
describe("Sort", function() {
|
||||
config({
|
||||
contracts: {
|
||||
Sort: {}
|
||||
}
|
||||
});
|
||||
|
||||
contract("Sort", function() {
|
||||
this.timeout(0);
|
||||
before(function(done) {
|
||||
EmbarkSpec.deployAll({"Sort": {}}, () => { done() });
|
||||
});
|
||||
|
||||
testdata.vectors.forEach(function(v, i) {
|
||||
it("Passes test vector " + i, async function() {
|
||||
|
|
|
@ -6,12 +6,16 @@
|
|||
*/
|
||||
|
||||
var testdata = require('../data/Unique.json');
|
||||
const Unique = require('Embark/contracts/Unique');
|
||||
|
||||
describe("Unique", function() {
|
||||
config({
|
||||
contracts: {
|
||||
Unique: {}
|
||||
}
|
||||
});
|
||||
|
||||
contract("Unique", function() {
|
||||
this.timeout(0);
|
||||
before(function(done) {
|
||||
EmbarkSpec.deployAll({"Unique": {}}, () => { done() });
|
||||
});
|
||||
|
||||
testdata.vectors.forEach(function(v, i) {
|
||||
it("Passes test vector " + i, async function() {
|
||||
|
|
Loading…
Reference in New Issue