Remove all of the test.skip() calls.

This commit is contained in:
Jade Welton
2026-07-10 14:14:19 -07:00
parent fec40b7dff
commit d3d6bbe572
22 changed files with 621 additions and 681 deletions
@@ -28,7 +28,6 @@ test.describe("Throughput bucket settings", () => {
}
test("Activate throughput bucket #2", async () => {
test.skip();
// Activate bucket 2
const bucket2Toggle = explorer.frame.getByTestId("bucket-2-active-toggle");
await bucket2Toggle.click();
@@ -43,7 +42,6 @@ test.describe("Throughput bucket settings", () => {
});
test("Activate throughput buckets #1 and #2", async () => {
test.skip();
// Activate bucket 1
const bucket1Toggle = explorer.frame.getByTestId("bucket-1-active-toggle");
await bucket1Toggle.click();
@@ -61,7 +59,6 @@ test.describe("Throughput bucket settings", () => {
});
test("Set throughput percentage for bucket #1", async () => {
test.skip();
// Set throughput percentage for bucket 1 (inactive) - Should be disabled
const bucket1PercentageInput = explorer.frame.getByTestId("bucket-1-percentage-input");
expect(bucket1PercentageInput).toBeDisabled();
@@ -82,7 +79,6 @@ test.describe("Throughput bucket settings", () => {
});
test("Set default throughput bucket", async () => {
test.skip();
// There are no active throughput buckets so they all should be disabled
const defaultThroughputBucketDropdown = explorer.frame.getByTestId("default-throughput-bucket-dropdown");
await defaultThroughputBucketDropdown.click();