Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit eef45c5

Browse files
Enable macaroons in integration tests.
1 parent 261ba48 commit eef45c5

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

test/integration/action/action-integration.spec.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ const LND_REST_PORT_1 = 8001;
3737
const LND_REST_PORT_2 = 8002;
3838
const HOST_1 = `localhost:${LND_PEER_PORT_1}`;
3939
const HOST_2 = `localhost:${LND_PEER_PORT_2}`;
40-
const MACAROONS_ENABLED = false;
4140
const NAP_TIME = process.env.NAP_TIME || 5000;
4241
const walletPassword = 'bitconeeeeeect';
4342

@@ -111,7 +110,6 @@ describe('Action Integration Tests', function() {
111110
await poll(() => isPortOpen(BTCD_PORT));
112111
const lndProcess1Promise = startLndProcess({
113112
isDev,
114-
macaroonsEnabled: MACAROONS_ENABLED,
115113
lndSettingsDir: LND_SETTINGS_DIR_1,
116114
lndPort: LND_PORT_1,
117115
lndPeerPort: LND_PEER_PORT_1,
@@ -120,7 +118,6 @@ describe('Action Integration Tests', function() {
120118
});
121119
const lndProcess2Promise = startLndProcess({
122120
isDev,
123-
macaroonsEnabled: MACAROONS_ENABLED,
124121
lndSettingsDir: LND_SETTINGS_DIR_2,
125122
lndPort: LND_PORT_2,
126123
lndPeerPort: LND_PEER_PORT_2,
@@ -135,13 +132,11 @@ describe('Action Integration Tests', function() {
135132
ipcMain: ipcMainStub1,
136133
lndPort: LND_PORT_1,
137134
lndSettingsDir: LND_SETTINGS_DIR_1,
138-
macaroonsEnabled: MACAROONS_ENABLED,
139135
});
140136
await grcpClient.init({
141137
ipcMain: ipcMainStub2,
142138
lndPort: LND_PORT_2,
143139
lndSettingsDir: LND_SETTINGS_DIR_2,
144-
macaroonsEnabled: MACAROONS_ENABLED,
145140
});
146141

147142
db1 = sinon.createStubInstance(AppStorage);

0 commit comments

Comments
 (0)