Skip to content

Commit

Permalink
fix(test): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nobkd committed Nov 23, 2022
1 parent 5197dab commit 9e2829f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/__snapshots__/custom-api-base.test.ts.snap
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Vitest Snapshot v1

exports[`Custom api baaseURL > Get contents index > basic-index-body 1`] = `
exports[`Custom api baseURL > Get contents index > basic-index-body 1`] = `
{
"children": [
{
Expand Down Expand Up @@ -38,7 +38,7 @@ exports[`Custom api baaseURL > Get contents index > basic-index-body 1`] = `
}
`;

exports[`Custom api baaseURL > Navigation > Get cats navigation > basic-navigation-cats 1`] = `
exports[`Custom api baseURL > Navigation > Get cats navigation > basic-navigation-cats 1`] = `
[
{
"_path": "/cats",
Expand All @@ -65,7 +65,7 @@ exports[`Custom api baaseURL > Navigation > Get cats navigation > basic-navigati
]
`;

exports[`Custom api baaseURL > Navigation > Get dogs navigation > basic-navigation-dogs 1`] = `
exports[`Custom api baseURL > Navigation > Get dogs navigation > basic-navigation-dogs 1`] = `
[
{
"_path": "/dogs",
Expand Down
2 changes: 1 addition & 1 deletion test/custom-api-base.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { testComponents } from './features/components'
const spyConsoleWarn = vi.spyOn(global.console, 'warn')
const apiBaseURL = '/my-content-api'

describe('Custom api baaseURL', async () => {
describe('Custom api baseURL', async () => {
await setup({
rootDir: fileURLToPath(new URL('./fixtures/basic', import.meta.url)),
server: true,
Expand Down

0 comments on commit 9e2829f

Please sign in to comment.