Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
tshemsedinov committed Aug 27, 2024
1 parent e5b2da1 commit 581072f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/sql.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ const metadomain = require('metadomain');

metatests.test('query.order/desc', async (test) => {
const res1 = await db.select('City').order('name');
console.log(res1);
test.strictEqual(res1[0].name, 'Alexandria');
const res2 = await db.select('City').desc('name');
test.strictEqual(res2[0].name, 'Wuhan');
Expand Down

0 comments on commit 581072f

Please sign in to comment.