gemini-clean
Version:
Find and remove reduntant gemini references
47 lines (35 loc) • 601 B
JavaScript
class SuiteBuilder {
constructor(suite) {
this.suite = suite;
}
capture(state) {
this.suite.addState(state);
return this
}
setUrl(url) {
return this;
}
setCaptureElements(selector) {
return this;
}
ignoreElements(selector) {
return this;
}
setTolerance() {
return this;
}
skip() {
return this;
}
browsers() {
return this;
}
before() {
return this;
}
after() {
return this;
}
}
module.exports = SuiteBuilder;
;