MCPcopy
hub / github.com/ampproject/amphtml / isSkipped

Method isSkipped

testing/test-config.js:116–128  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

114 }
115
116 isSkipped() {
117 for (let i = 0; i < this.skipMatchers.length; i++) {
118 if (this.skipMatchers[i].call(this)) {
119 return true;
120 }
121 }
122 for (let i = 0; i < this.ifMatchers.length; i++) {
123 if (!this.ifMatchers[i].call(this)) {
124 return true;
125 }
126 }
127 return false;
128 }
129
130 /**
131 * Runs tests after configuration is complete. Variable args because describe

Callers 1

runMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected