db.test.js 234 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 'use strict'; import {building} from '../apps/models'; import test from 'ava'; test('test db select', async (t) => { let doc = await building.findOne( { _id: 'zuugJFiH97LgPcv6' } ); console.log(doc); t.pass(); });