Skip to content

Commit

Permalink
Remove accidental test.only, ensure it never happens again
Browse files Browse the repository at this point in the history
  • Loading branch information
sinistersnare committed Jun 28, 2023
1 parent 392e5ea commit 6f0867c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/perspective/test/js/updates.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ async function match_delta(perspective, delta, expected) {
table.delete();
});

test.only("Table.get_num_views", async function () {
test("Table.get_num_views", async function () {
const table = await perspective.table({
a: "integer",
});
Expand Down
1 change: 1 addition & 0 deletions tools/perspective-test/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ export default defineConfig({
expect: {
timeout: 100_000,
},
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
quiet: true,
reporter: process.env.CI ? "github" : "list",
Expand Down

0 comments on commit 6f0867c

Please sign in to comment.