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