Skip to content

Commit

Permalink
fix(jest): remove unnecessary 'async' flags from test
Browse files Browse the repository at this point in the history
  • Loading branch information
danwbyrne committed Mar 14, 2019
1 parent 6030f89 commit 0aff798
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const events: ReadonlyArray<any> = [
},
];

describe('Transfer - No Function Options', async () => {
describe('Transfer - No Function Options', () => {
// tslint:disable-next-line:no-any
const parameters: ReadonlyArray<any> = [
{
Expand Down Expand Up @@ -198,7 +198,7 @@ describe('Transfer - Complete Send - Optional ForwardValues', () => {
testFunc(testArgsThrow, 'throws-noHash', 'Expected to find a hash argument');
});

describe('Transfer - Send - Optional ForwardValue', async () => {
describe('Transfer - Send - Optional ForwardValue', () => {
// tslint:disable-next-line:no-any
const parameters: ReadonlyArray<any> = [
{
Expand Down Expand Up @@ -334,7 +334,7 @@ describe('Transfer - SendUnsafe&Receive', () => {
testFunc(testArgsAllOptions, 'all-allOptions');
});

describe('Transfer - No Forward Values', async () => {
describe('Transfer - No Forward Values', () => {
// tslint:disable-next-line:no-any
const parameters: ReadonlyArray<any> = [
{
Expand Down

0 comments on commit 0aff798

Please sign in to comment.