Skip to content

Commit cacba86

Browse files
committed
try adding slip on coverage for a long string name test
1 parent be2a980 commit cacba86

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.solcover.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module.exports = {
2-
measureStatementCoverage: false,
2+
mocha: {
3+
grep: "@skip-on-coverage", // Find everything with this tag
4+
invert: true // Run the grep's inverse set.
5+
},
36
skipFiles: [
47
'utils/StringUtils.sol',
58
'token/mocks',

test/ZNSSubRegistrar.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ describe("ZNSSubRegistrar", () => {
421421
});
422422

423423
// ! this value can change based on the block gas limit !
424-
it.skip("should register subdomain with a label length of 100000 chars", async () => {
424+
it("should register subdomain with a label length of 100000 chars [ @skip-on-coverage ]", async () => {
425425
const subHash = await registrationWithSetup({
426426
zns,
427427
user: lvl2SubOwner,

0 commit comments

Comments
 (0)