Skip to content

Commit

Permalink
fix: deploy-script-support tests (#2677)
Browse files Browse the repository at this point in the history
fix: deploy-script-support tests
  • Loading branch information
katelynsills authored Mar 18, 2021
1 parent 3629e2c commit 0d1b1de
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test-all-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,10 @@ jobs:
run: cd packages/transform-metering && yarn test
env:
ESM_DISABLE_CACHE: true
- name: yarn test (deploy-script-support)
run: cd packages/deploy-script-support && yarn test
env:
ESM_DISABLE_CACHE: true

##############
# Long-running tests are executed individually.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';
import { makeIssuerKit, MathKind } from '@agoric/ertp';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';
import { makeIssuerKit, MathKind } from '@agoric/ertp';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* global require */
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';
import { makeZoe } from '@agoric/zoe';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* global require */
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';
import { makeZoe } from '@agoric/zoe';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* global require */
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* global require */
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
/* global require */
// @ts-check

import '@agoric/zoe/tools/prepare-test-env';
// eslint-disable-next-line import/no-extraneous-dependencies
import test from 'ava';
import { makeZoe } from '@agoric/zoe';
Expand Down

0 comments on commit 0d1b1de

Please sign in to comment.