Skip to content

Commit

Permalink
Update datastore.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
cchensh committed Sep 27, 2024
1 parent e71ce85 commit 1c75a6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli-test/src/cli/commands/datastore.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ describe('datastore commands', () => {
});
describe('put method', () => {
it('should invoke `datastore put [item details]`', async () => {
const itemObj: any = {
const itemObj = {
id: "1",
content: "text"
};
Expand All @@ -49,7 +49,7 @@ describe('datastore commands', () => {
});
describe('query method', () => {
it('should invoke `datastore query [expression]`', async () => {
const expressObj: any = {
const expressObj = {
id: "1",
};
await datastore.datastoreQuery({ appPath: '/some/path', datastoreName: 'datastore', queryExpression: 'id = :id', queryExpressionValues: expressObj});
Expand Down

0 comments on commit 1c75a6e

Please sign in to comment.