Skip to content

Commit

Permalink
Temp: limit to 1 test
Browse files Browse the repository at this point in the history
  • Loading branch information
smoores-dev committed Oct 12, 2024
1 parent 7d28798 commit 1cdbe8e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"fix:toc": "markdown-toc --bullets='-' -i README.md",
"fix": "concurrently -P 'npm:fix:* {@}' --",
"prepack": "yarn build",
"test:wdio": "wdio run ./wdio.conf.ts",
"test:wdio": "wdio run ./wdio.conf.ts --spec src/components/__tests__/ProseMirror.draw-decoration.test.tsx",
"test:unit": "jest",
"test": "yarn test:unit && yarn test:wdio"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function updateDeco(
}

describe("Decoration drawing", () => {
it("draws inline decorations", async () => {
it.only("draws inline decorations", async () => {

Check failure on line 93 in src/components/__tests__/ProseMirror.draw-decoration.test.tsx

View workflow job for this annotation

GitHub Actions / check

Unexpected focused test
const { view } = tempEditor({
doc: doc(p("foobar")),
plugins: [decoPlugin(["2-5-foo"])],
Expand Down
2 changes: 1 addition & 1 deletion wdio.conf.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const config: WebdriverIO.Config = {
// Define all options that are relevant for the WebdriverIO instance here
//
// Level of logging verbosity: trace | debug | info | warn | error | silent
logLevel: "info",
logLevel: "warn",
//
// Set specific log levels per logger
// loggers:
Expand Down

0 comments on commit 1cdbe8e

Please sign in to comment.