Skip to content

Commit 486687e

Browse files
committed
add sponsors
1 parent 64df0b4 commit 486687e

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,3 +113,13 @@ Ginkgo is MIT-Licensed
113113
## Contributing
114114

115115
See [CONTRIBUTING.md](CONTRIBUTING.md)
116+
117+
## Sponsors
118+
119+
Sponsors commit to a [sponsorship](https://github.com/sponsors/onsi) for a year. If you're an organization that makes use of Ginkgo please consider becoming a sponsor!
120+
121+
<p style="font-size:21px; color:black;">Browser testing via
122+
<a href="https://www.lambdatest.com/" target="_blank">
123+
<img src="https://www.lambdatest.com/blue-logo.png" style="vertical-align: middle;" width="250" height="45" />
124+
</a>
125+
</p>

docs/index.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,18 @@ This was the context that led to Ginkgo. Over the years the Go testing ecosyste
2929

3030
Happy Testing!
3131

32+
## Sponsors
33+
34+
Sponsors commit to a [sponsorship](https://github.com/sponsors/onsi) for a year. If you're an organization that makes use of Ginkgo please consider becoming a sponsor!
35+
36+
<p style="font-size:21px; color:black;">Browser testing via
37+
<a href="https://www.lambdatest.com/" target="_blank">
38+
<img src="https://www.lambdatest.com/blue-logo.png" style="vertical-align: middle;" width="250" height="45" />
39+
</a>
40+
</p>
41+
42+
Learn more about our sponsors [below](#more-about-our-sponsors).
43+
3244
## Getting Started
3345

3446
In this section we cover installing Ginkgo, Gomega, and the `ginkgo` CLI. We bootstrap a Ginkgo suite, write our first spec, and run it.
@@ -5869,3 +5881,22 @@ skip the `os.Getwd()` call. This may affect the reporter output.
58695881
The [ginkgolinter](https://github.com/nunnatsa/ginkgolinter) enforces several patterns of using ginkgo and gomega. It can run as an independent executable or as part of the [golangci-lint](https://golangci-lint.run/) linter. See the ginkgolinter [README](https://github.com/nunnatsa/ginkgolinter#readme) for more details.
58705882
58715883
{% endraw %}
5884+
5885+
5886+
## More About our Sponsors
5887+
5888+
Sponsors commit to a [sponsorship](https://github.com/sponsors/onsi) for a year. If you're an organization that makes use of Ginkgo please consider becoming a sponsor!
5889+
5890+
<p style="font-size:21px; color:black;">Browser testing via
5891+
<a href="https://www.lambdatest.com/" target="_blank">
5892+
<img src="https://www.lambdatest.com/blue-logo.png" style="vertical-align: middle;" width="250" height="45" />
5893+
</a>
5894+
</p>
5895+
5896+
LambdaTest is a GenAI-powered Quality Engineering Platform that empowers teams to test intelligently, smarter, and ship faster. Built for scale, it offers a full-stack testing cloud with 10K+ real devices and 3,000+ browsers.
5897+
5898+
With AI-native test management, MCP servers, and agent-based automation, LambdaTest supports Selenium, Appium, Playwright, and all major frameworks. AI Agents like HyperExecute and KaneAI bring the power of AI and cloud into your software testing workflow, enabling seamless automation testing with 120+ integrations.
5899+
5900+
LambdaTest Agents accelerate your testing throughout the entire SDLC, from test planning and authoring to automation, infrastructure, execution, RCA, and reporting.
5901+
5902+
For more information, please visit https://lambdatest.com/

docs/js/docs.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,17 @@
55
let currentHeadingGroup = null
66
let collapsibleGroup = null
77
for (let heading of headings) {
8+
if (heading.id.includes("sponsors")) {
9+
continue
10+
}
11+
812
let el = document.createElement("a")
913
el.href = `#${heading.id}`
1014
el.id = `${heading.id}-item`
1115
el.innerText = heading.innerText
1216

1317
if (heading.tagName == "H2") {
1418
currentHeadingGroup = heading.id
15-
1619
el.classList = "sidebar-heading"
1720
sidebar.appendChild(el)
1821

@@ -30,10 +33,13 @@
3033
let ticking = false;
3134
document.getElementById("content").addEventListener("scroll", (e) => {
3235
if (!ticking) {
33-
window.requestAnimationFrame(function() {
36+
window.requestAnimationFrame(function () {
3437
let viewportHeight = window.visualViewport.height;
3538
let winner = null;
3639
for (let heading of headings) {
40+
if (heading.id.includes("sponsors")) {
41+
continue
42+
}
3743
let rect = heading.getBoundingClientRect();
3844
if (rect.top > viewportHeight) { break }
3945
winner = heading.id

0 commit comments

Comments
 (0)