Skip to content

Commit

Permalink
Merge pull request #33 from timlrx/plugin/cff
Browse files Browse the repository at this point in the history
Add CFF support
  • Loading branch information
timlrx committed Oct 12, 2023
2 parents 6786f9d + 4a654f3 commit 1e4db8c
Show file tree
Hide file tree
Showing 22 changed files with 4,311 additions and 3,603 deletions.
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
2 changes: 1 addition & 1 deletion demo/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const config = {
/* Run your local dev server before starting the tests */
webServer: {
command: 'npm run vite',
port: 3000,
port: 5173,
},
}

Expand Down
2 changes: 1 addition & 1 deletion demo/test/app.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { test, expect } from '@playwright/test'

test('should work in a client env', async ({ page }) => {
await page.goto('http://localhost:3000')
await page.goto('http://localhost:5173')
const locator = page.locator('id=results')
await expect(locator).toContainText('(Nash, 1950, pp. iv, vi–xi, (xv)-(xvii))')
})
Loading

0 comments on commit 1e4db8c

Please sign in to comment.