Skip to content

Commit

Permalink
test(i18n): fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
ysfscream committed Nov 8, 2023
1 parent 9558534 commit 56108eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/i18n/lib/__test__/sqlTemplate.test.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// sqlTemplate.test.ts
import { sqlTemplate } from '../sqlTemplate'
import { SQLTemplates } from '../sqlTemplate'
import { describe, it, expect } from 'vitest'

describe('sqlTemplate', () => {
it('contains valid SQL templates', () => {
sqlTemplate.forEach((template) => {
SQLTemplates.forEach((template) => {
// 测试基本属性
expect(template).toHaveProperty('title')
expect(template).toHaveProperty('scene')
Expand Down

0 comments on commit 56108eb

Please sign in to comment.