Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
This repository was archived by the owner on Sep 16, 2018. It is now read-only.
/jestPublic archive

Angular schematic for adding Jest and the required files to an Angular CLI project

NotificationsYou must be signed in to change notification settings

briebug/jest

Repository files navigation

This repo & package have been deprecated and renamed to@briebug/jest-schematic. All future development will take place athttps://github.com/briebug/jest-schematic

Jest Angular Schematic

npm (scoped)

AddJest to an Angular 6 project

Usage 🚀

Install globally

npm install -g @briebug/jest

Then in an Angular CLI project run

ng g @briebug/jest:jest

This schematic will:

  • install Jest, it's dependencies, and scripts
  • add necessary files for Jest to work with Angular
  • remove unnecessary Karma files and configuration

ng-add-jest

Optionally run as one command in an Angular CLI app directory. Note this will add the schematic as a dependency to your project.

ng add @briebug/jest

Development 🛠

Getting started

npm install&& npm run link

Test schematic changes against this repositories Angular CLI sandbox

When running locally, schematic changes will be applied to the test app in the./sandbox directory. The sandbox is a bare CLI app and serves no other purpose than for testing schematics changes.

Compile the typescript in watch mode in one shell:

npm run build

Run the following in another shell every time a schematic change is made:

npm run clean:launch

clean:launch will reset the sandbox to is current version controlled state, removing un-tracked files, and run the schematic against the sandbox. This will be your main development command.

Be careful not to check in changes to the sandbox directory unless necessary.

Test schematics against a local project

  • runnpm run build to compile the schematic in watch mode
  • open another shell, cd into the local repo you want to run the schematic against, and runnpm link ../PATH_TO_THIS_PROJECT
    • this will symlink the projects so that the Jest schematic command runs from you're local filesystem
  • in the local repo you want to run the schematic against, runng g @briebug/jest:jest

Dev tips

For faster developing, find and comment out the following line to avoid npm installing dependencies

context.addTask(newNodePackageInstallTask());

Reset sandbox to its version controlled state

This will reset the sandbox folder to itsHEAD commit and remove un-tracked files.

npm run clean

Compile the schematics

Compile the typescript files in watch mode

npm run build

Compile the typescript files once

npm run build:once

Testing

Test local sandbox for regressions

Run a series of standard tests to ensure the./sandbox continues to function normally

npm run test:sandbox

Getting Started With Schematics

This repository is a basic Schematic implementation that serves as a starting point to create and publish Schematics to NPM.

Schematic Testing

To test locally, install@angular-devkit/schematics globally and use theschematics command line tool. That tool acts the same as thegenerate command of the Angular CLI, but also has a debug mode.

Check the documentation with

schematics --help

Unit Testing

npm run test will run the unit tests, using Jasmine as a runner and test framework.

Publishing

Publishing is handled bynp. Ensure you have push access to this repo and are a@breibug NPM contributor. Severaloptions are available for releases such asnpm run release --no-publish.

Once all features are merged intomaster:

  1. on your machine, checkoutmaster
  2. pull latest
  3. npm run release
  4. select the next appropriate version given the changes being added
  5. copy theCommits: displayed in your shell
  6. release-commits
  7. edit the new release tag, and paste in the change notes and supply a title if appropriate
  8. edit-github-release

Documentation

Common solutions

node-package

If you receive the following error and are on Angular CLI 1.X, trying moving to"@angular/cli": "1.7" or higher.

Error: Unregistered task"node-package"in schematic ...

About

Angular schematic for adding Jest and the required files to an Angular CLI project

Resources

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp