Skip to content

Commit

Permalink
test debug
Browse files Browse the repository at this point in the history
  • Loading branch information
wtto00 committed May 10, 2024
1 parent 6c2c827 commit 7318322
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/afterStart.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import path from 'path';
import Android from '../src/index.js';

const android = new Android();
const android = new Android({ debug: true });

let emulatorId = '';
beforeAll(async () => {
Expand Down
2 changes: 1 addition & 1 deletion spec/emulatorAVD.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Android from '../src/index.js';

describe('emulator AVD', () => {
const android = new Android();
const android = new Android({ debug: true });

test('create AVD', async () => {
const avdName = `TestCreate_${Math.random()}`;
Expand Down
2 changes: 1 addition & 1 deletion spec/start.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Android from '../src/index.js';

describe('start', () => {
const android = new Android();
const android = new Android({ debug: true });

test('start a non-existent AVD.', async () => {
await expect(async () => {
Expand Down

0 comments on commit 7318322

Please sign in to comment.