Skip to content

Commit

Permalink
log create code
Browse files Browse the repository at this point in the history
  • Loading branch information
jperl committed Mar 10, 2020
1 parent 8eca14c commit 4744b31
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"debug": "*",
"dotenv": "^8.2.0",
"inquirer": "^7.0.5",
"kleur": "^3.0.3",
"playwright": "0.11.1-next.1583631839291",
"playwright-ci": "^0.4.0",
"playwright-html-selector": "^0.3.0",
Expand Down
2 changes: 2 additions & 0 deletions src/create-code/create.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import callsites from 'callsites';
import Debug from 'debug';
import { pathExists, readFile } from 'fs-extra';
import { bold } from 'kleur';
import { findLast } from 'lodash';
import { basename, dirname, join } from 'path';
import { BrowserContext } from 'playwright';
Expand Down Expand Up @@ -76,6 +77,7 @@ export const create = async (options: CreateOptions = {}): Promise<void> => {
selectorPath,
});

console.log(bold().blue('🐺 QA Wolf is ready to create code!'));
if (options.onReady) options.onReady();

await manager.finalize();
Expand Down

1 comment on commit 4744b31

@jperl
Copy link
Member Author

@jperl jperl commented on 4744b31 Mar 10, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding kleur dependency relates to https://github.com/qawolf/qawolf/issues/460

Please sign in to comment.