I have written a smart contract and tried to deploy it on testrpc. I am getting the following error:
Error: Exceeds block gas limit at Object.InvalidResponse 
I have set gas high
gas: 0xfffffffffff, // <-- Use this high gas value
gasPrice: 0x01  
But I am still getting this error. How to solve this?
 .solcover.js
module.exports = {
    port: 8545,
    norpc: true,
    skipFiles: ['contracts/Migrations.sol']
}