Skip to content

Commit 87a0eeb

Browse files
committed
Added dependency and reformat
1 parent 6b96da4 commit 87a0eeb

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pandas-stubs = "*"
2929
sphinx = "*"
3030
myst-parser = "*"
3131
# jupyter = "*" # We should not really need jupyter notebooks.
32-
32+
pytz = "*" # Pandas dependency that doesn't seem to be explicitly declared.
3333

3434
[packages]
3535
colorama = "*"

Pipfile.lock

Lines changed: 9 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cypress/e2e/crkeng/recordings.spec.js

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ context("Recordings", function () {
2222
describe("On the definition page", () => {
2323
beforeEach(() => {
2424
// Intercept calls to our API
25-
cy.intercept("https://speech-db.altlab.app/maskwacis/api/bulk_search?*q=w%C3%A2pam%C3%AAw*", {
26-
fixture: "recording/bulk_search/wâpamêw.json",
27-
}).as("recordingsResults");
25+
cy.intercept(
26+
"https://speech-db.altlab.app/maskwacis/api/bulk_search?*q=w%C3%A2pam%C3%AAw*",
27+
{
28+
fixture: "recording/bulk_search/wâpamêw.json",
29+
}
30+
).as("recordingsResults");
2831
});
2932

3033
it("should play a recording via a 🔊 icon", function () {
@@ -89,7 +92,9 @@ context("Recordings", function () {
8992
cy.wait("@recordingsResults");
9093

9194
// And we should be able to click it.
92-
cy.get("div[data-cy=play-paradigm-recording][data-inflection=wâpamêw]").click();
95+
cy.get(
96+
"div[data-cy=play-paradigm-recording][data-inflection=wâpamêw]"
97+
).click();
9398

9499
// Note: figuring out if the audio actually played is... involved,
95100
// and error-prone, so it is not tested.

0 commit comments

Comments
 (0)