Skip to content

Commit

Permalink
Merge pull request #677 from near/test/disable-dynamodb-tests
Browse files Browse the repository at this point in the history
disable service tests
  • Loading branch information
andy-haynes authored Jan 19, 2024
2 parents 3864fff + 665d1d1 commit 1893207
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/services/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { expect } = chai;

const accountService = new AccountService();

describe('AccountService', function () {
describe.skip('AccountService', function () {
let terminateLocalDynamo = () => {};
before(async function() {
this.timeout(20000);
Expand Down
2 changes: 1 addition & 1 deletion test/services/email_domain_blacklist.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const STALE_AT = (new Date()).toString();

const emailDomainBlacklistService = new EmailDomainBlacklistService();

describe('EmailDomainBlacklistService', function () {
describe.skip('EmailDomainBlacklistService', function () {
let terminateLocalDynamo = () => {};
before(async function() {
this.timeout(20000);
Expand Down
2 changes: 1 addition & 1 deletion test/services/identity_verification_method.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const SECURITY_CODE = '123456';

const identityVerificationMethodService = new IdentityVerificationMethodService();

describe('IdentityVerificationMethodService', function () {
describe.skip('IdentityVerificationMethodService', function () {
let terminateLocalDynamo = () => {};
before(async function() {
this.timeout(20000);
Expand Down
2 changes: 1 addition & 1 deletion test/services/recovery_method.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const PUBLIC_KEY = 'xyz';

const recoveryMethodService = new RecoveryMethodService();

describe('RecoveryMethodService', function () {
describe.skip('RecoveryMethodService', function () {
beforeEach(async function () {
const methods = await recoveryMethodService.listAllRecoveryMethods(ACCOUNT_ID);
await Promise.all(methods.map((method) => recoveryMethodService.deleteRecoveryMethod(method)));
Expand Down

0 comments on commit 1893207

Please sign in to comment.