Skip to content

Commit 7773c2b

Browse files
committed
Remove .only from extension payout tests
1 parent 801791d commit 7773c2b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/contracts-network/colony-expenditure.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,7 @@ contract("Colony Expenditure", (accounts) => {
715715
});
716716
});
717717

718-
describe.only("when claiming expenditures for extension contracts", () => {
718+
describe("when claiming expenditures for extension contracts", () => {
719719
let expenditureId;
720720
let extensionAddress;
721721
const TEST_EXTENSION = soliditySha3("TestExtension");

test/contracts-network/colony-payment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ contract("Colony Payment", (accounts) => {
379379
});
380380
});
381381

382-
describe.only("when claiming payments on behalf of extensions", () => {
382+
describe("when claiming payments on behalf of extensions", () => {
383383
let extensionAddress;
384384
const TEST_EXTENSION = soliditySha3("TestExtension");
385385
const extensionVersion = 0;

test/contracts-network/colony-task.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const IReputationMiningCycle = artifacts.require("IReputationMiningCycle");
7070
const TestExtension0 = artifacts.require("TestExtension0");
7171
const Resolver = artifacts.require("Resolver");
7272

73-
contract.only("ColonyTask", (accounts) => {
73+
contract("ColonyTask", (accounts) => {
7474
const MANAGER = accounts[0];
7575
const EVALUATOR = MANAGER;
7676
const WORKER = accounts[2];

0 commit comments

Comments
 (0)