@@ -239,9 +239,9 @@ module.exports = {
239
239
contracts : { isDirectory : true } ,
240
240
scripts : { isDirectory : true } ,
241
241
tests : { isDirectory : true } ,
242
- 'remix.config.json' : { isDirectory : false } ,
243
242
'README.txt' : { isDirectory : false } ,
244
243
'.prettierrc.json' : { isDirectory : false } ,
244
+ 'remix.config.json' : { isDirectory : false }
245
245
} , null , '/' )
246
246
} ,
247
247
'Should throw error on current file #group7' : async function ( browser : NightwatchBrowser ) {
@@ -330,14 +330,14 @@ module.exports = {
330
330
// DGIT
331
331
'Should have changes on new workspace #group3' : async function ( browser : NightwatchBrowser ) {
332
332
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 )
334
334
} ,
335
335
336
336
'Should stage contract #group3' : async function ( browser : NightwatchBrowser ) {
337
337
await clickAndCheckLog ( browser , 'dgitApi-add' , null , null , {
338
338
filepath : 'contracts/1_Storage.sol'
339
339
} )
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 )
341
341
} ,
342
342
'Should commit changes #group3' : async function ( browser : NightwatchBrowser ) {
343
343
await clickAndCheckLog ( browser , 'dgitApi-commit' , null , null , { author : { name : 'Remix' , email : 'Remix' } , message : 'commit-message' } )
0 commit comments