Angular

To create a new assignment in Angular, click into one of your courses, and then click Add assignment. Choose Angular from the drop-down list of available frontend frameworks and set the the rest of your assignment's parameters (deadline, etc.). Once the assignment is created, a new folder will be created in the private GitHub/GitLab template repository for the course in which you are added this assignment. This folder will contain a standard Angular project structure:

Automated test-suite setup

If you would like to add tests that are automatically run by AssignmentOS against each student's solution to your assignment, you can add these as unit tests or end-to-end tests.

All unit tests files must use the Angular default Jasmine test framework & Karma test runner and all end-to-end tests must use the Cypress E2E test framework.

All unit test filenames must end with .spec.ts and unit test files with filenames that end with .hidden.spec.ts will not be visible to the student.

All end-to-end test filenames must end with -spec.cy.ts, and end-to-end test files with filenames that end with -hidden-spec.cy.ts will not be visible to the student.

If you want to add files that your hidden unit tests use and hence are also not visible to the student, the names of these files must begin with hidden, e.g., hiddenFoo.json, hiddenFoo.csv, hidden-foo.ts, etc.

Your assignment must use Angular 13, and the package.json file may only be changed if you want to add third-party libraries to your assignment. All the current versions of the dependencies in package.json and package-lock.json must not be changed.

The other config files in the template repo must also not be changed, including the karma.conf.js and cypress.config.ts files.

GitHub Action & GitLab CI/CD

AssignmentOS uses either GitHub Actions or GitLab CI/CD (depending on whether you use with GitHub or GitLab) to run automated unit tests. We provide the following GitHub Action & GitLab CI/CD file for Angular assignments. Note that this file is added dynamically to the repo of each student taking your assignment, so please do not include it in your template repo. This file also cannot be changed.

GitHub Action .yml fileGitLab CI/CD .yml file

Coming soon!

Last updated