Skip to content

Commit

Permalink
test: move vat-status.js
Browse files Browse the repository at this point in the history
  • Loading branch information
turadg committed Sep 25, 2023
1 parent 3ff341c commit 1b81013
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import test from 'ava';
import { getIncarnation } from './tools/vat-status.js';
import { getIncarnation } from '../lib/vat-status.js';

test(`verify Zoe vat incarnation`, async t => {
const incarantion = await getIncarnation('zoe');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import test from 'ava';

import { waitForBlock } from '../lib/commonUpgradeHelpers.js';
import { getIncarnation } from './tools/vat-status.js';
import { getIncarnation } from '../lib/vat-status.js';

test.before(async () => {
console.log('Wait for upgrade to settle');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @ts-check
import dbOpenAmbient from 'better-sqlite3';
import { HOME } from '../../lib/constants.js';
import { HOME } from './constants.js';

/**
* @file look up vat incarnation from kernel DB
Expand Down

0 comments on commit 1b81013

Please sign in to comment.