Skip to content

Commit 06f8f80

Browse files
ioedeveloperAniket-Engg
authored andcommitted
Update plugin api test
1 parent b64fb5d commit 06f8f80

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/remix-ide-e2e/src/tests/plugin_api.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,9 +239,9 @@ module.exports = {
239239
contracts: { isDirectory: true },
240240
scripts: { isDirectory: true },
241241
tests: { isDirectory: true },
242-
'remix.config.json': { isDirectory: false },
243242
'README.txt': { isDirectory: false },
244243
'.prettierrc.json': { isDirectory: false },
244+
'remix.config.json': { isDirectory: false }
245245
}, null, '/')
246246
},
247247
'Should throw error on current file #group7': async function (browser: NightwatchBrowser) {
@@ -330,14 +330,14 @@ module.exports = {
330330
// DGIT
331331
'Should have changes on new workspace #group3': async function (browser: NightwatchBrowser) {
332332
await clickAndCheckLog(browser, 'filePanel-createWorkspace', null, null, 'dgit')
333-
await clickAndCheckLog(browser, 'dgitApi-status', [[".prettierrc.json",0,2,0], ["README.txt",0,2,0],["remix.config.json",0,2,0],["contracts/1_Storage.sol",0,2,0],["contracts/2_Owner.sol",0,2,0],["contracts/3_Ballot.sol",0,2,0],["scripts/deploy_with_ethers.ts",0,2,0],["scripts/deploy_with_web3.ts",0,2,0],["scripts/ethers-lib.ts",0,2,0],["scripts/web3-lib.ts",0,2,0],["tests/Ballot_test.sol",0,2,0],["tests/storage.test.js",0,2,0]], null, null)
333+
await clickAndCheckLog(browser, 'dgitApi-status', [[".prettierrc.json",0,2,0], ["README.txt",0,2,0],["contracts/1_Storage.sol",0,2,0],["contracts/2_Owner.sol",0,2,0],["contracts/3_Ballot.sol",0,2,0],["remix.config.json",0,2,0],["scripts/deploy_with_ethers.ts",0,2,0],["scripts/deploy_with_web3.ts",0,2,0],["scripts/ethers-lib.ts",0,2,0],["scripts/web3-lib.ts",0,2,0],["tests/Ballot_test.sol",0,2,0],["tests/storage.test.js",0,2,0]], null, null)
334334
},
335335

336336
'Should stage contract #group3': async function (browser: NightwatchBrowser) {
337337
await clickAndCheckLog(browser, 'dgitApi-add', null, null, {
338338
filepath: 'contracts/1_Storage.sol'
339339
})
340-
await clickAndCheckLog(browser, 'dgitApi-status', [[".prettierrc.json",0,2,0],["README.txt",0,2,0],["remix.config.json",0,2,0],["contracts/1_Storage.sol",0,2,2],["contracts/2_Owner.sol",0,2,0],["contracts/3_Ballot.sol",0,2,0],["scripts/deploy_with_ethers.ts",0,2,0],["scripts/deploy_with_web3.ts",0,2,0],["scripts/ethers-lib.ts",0,2,0],["scripts/web3-lib.ts",0,2,0],["tests/Ballot_test.sol",0,2,0],["tests/storage.test.js",0,2,0]], null, null)
340+
await clickAndCheckLog(browser, 'dgitApi-status', [[".prettierrc.json",0,2,0],["README.txt",0,2,0],["contracts/1_Storage.sol",0,2,2],["contracts/2_Owner.sol",0,2,0],["contracts/3_Ballot.sol",0,2,0],["remix.config.json",0,2,0],["scripts/deploy_with_ethers.ts",0,2,0],["scripts/deploy_with_web3.ts",0,2,0],["scripts/ethers-lib.ts",0,2,0],["scripts/web3-lib.ts",0,2,0],["tests/Ballot_test.sol",0,2,0],["tests/storage.test.js",0,2,0]], null, null)
341341
},
342342
'Should commit changes #group3': async function (browser: NightwatchBrowser) {
343343
await clickAndCheckLog(browser, 'dgitApi-commit', null, null, { author: { name: 'Remix', email: 'Remix' }, message: 'commit-message' })

0 commit comments

Comments
 (0)