Skip to content

Commit fbed395

Browse files
authored
Restructure test folders / move npm commands to shell scripts (#841)
1 parent 1c257b0 commit fbed395

File tree

130 files changed

+49
-35
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+49
-35
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- run:
5050
name: Zeppelin E2E
5151
command: |
52-
./scripts/run-zeppelin.sh
52+
./scripts/zeppelin.sh
5353
e2e-nomiclabs:
5454
machine: true
5555
steps:
@@ -58,7 +58,7 @@ jobs:
5858
- run:
5959
name: Hardhat E2E
6060
command: |
61-
./scripts/run-nomiclabs.sh
61+
./scripts/nomiclabs.sh
6262
workflows:
6363
version: 2
6464
build:

package.json

+3-5
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@
1010
"test": "test"
1111
},
1212
"scripts": {
13-
"nyc": "SILENT=true nyc --exclude '**/sc_temp/**' --exclude '**/test/**'",
14-
"test": "SILENT=true node --max-old-space-size=4096 ./node_modules/.bin/nyc --exclude '**/sc_temp/**' --exclude '**/test/**/' -- mocha test/units/* --timeout 100000 --no-warnings --exit",
15-
"test:ci": "SILENT=true node --max-old-space-size=4096 ./node_modules/.bin/nyc --reporter=lcov --exclude '**/sc_temp/**' --exclude '**/test/**/' --exclude 'plugins/resources/matrix.js' -- mocha test/units/* --timeout 100000 --no-warnings --exit",
16-
"test:debug": "node --max-old-space-size=4096 ./node_modules/.bin/mocha test/units/* --timeout 100000 --no-warnings --exit",
17-
"netlify": "./scripts/run-netlify.sh"
13+
"test:unit": "./scripts/unit.sh",
14+
"test:integration": "./scripts/integration.sh",
15+
"test:ci": "./scripts/ci.sh"
1816
},
1917
"homepage": "https://github.com/sc-forks/solidity-coverage",
2018
"repository": {

scripts/ci.sh

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
SILENT=true node --max-old-space-size=4096 \
4+
./node_modules/.bin/nyc \
5+
--reporter=lcov \
6+
--exclude '**/sc_temp/**' \
7+
--exclude '**/test/**/' \
8+
--exclude 'plugins/resources/matrix.js' \
9+
-- \
10+
mocha \
11+
test/units/* test/integration/* \
12+
--timeout 100000 \
13+
--no-warnings \
14+
--exit \

scripts/integration.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env bash
2+
3+
node --max-old-space-size=4096 \
4+
./node_modules/.bin/nyc \
5+
--exclude '**/sc_temp/**' \
6+
--exclude '**/test/**/' \
7+
-- \
8+
mocha test/integration/* \
9+
--timeout 100000 \
10+
--no-warnings \
11+
--exit
File renamed without changes.

scripts/run-netlify.sh

-20
This file was deleted.

scripts/unit.sh

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env bash
2+
3+
node --max-old-space-size=4096 \
4+
./node_modules/.bin/nyc \
5+
--exclude '**/sc_temp/**' \
6+
--exclude '**/test/**/' \
7+
-- \
8+
mocha test/units/* \
9+
--timeout 100000 \
10+
--no-warnings \
11+
--exit
File renamed without changes.

test/units/hardhat/errors.js test/integration/errors.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ const pify = require('pify')
55
const shell = require('shelljs');
66
const ganache = require('ganache-cli')
77

8-
const verify = require('../../util/verifiers')
9-
const mock = require('../../util/integration');
8+
const verify = require('./../util/verifiers')
9+
const mock = require('./../util/integration');
1010

1111
// =======
1212
// Errors

test/units/hardhat/flags.js test/integration/flags.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const fs = require('fs');
33
const path = require('path')
44
const shell = require('shelljs');
55

6-
const verify = require('../../util/verifiers')
7-
const mock = require('../../util/integration');
6+
const verify = require('./../util/verifiers')
7+
const mock = require('./../util/integration');
88

99
// =======================
1010
// CLI Options / Flags

test/units/hardhat/standard.js test/integration/standard.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const fs = require('fs');
33
const path = require('path')
44
const shell = require('shelljs');
55

6-
const verify = require('../../util/verifiers')
7-
const mock = require('../../util/integration');
6+
const verify = require('./../util/verifiers')
7+
const mock = require('./../util/integration');
88

99
// =======================
1010
// Standard Use-case Tests
File renamed without changes.
File renamed without changes.

test/util/integration.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const hardhatConfigName = 'hardhat.config.js';
1717
const configPath = `${temp}/.solcover.js`;
1818
const testPath = './test/sources/js/';
1919
const sourcesPath = './test/sources/solidity/contracts/app/';
20-
const templatePath = './test/integration/generic/*';
21-
const projectPath = './test/integration/projects/'
20+
const templatePath = './test/sources/generic/*';
21+
const projectPath = './test/sources/projects/'
2222

2323
let previousCWD;
2424

0 commit comments

Comments
 (0)