Skip to content

Commit

Permalink
trigger a build to test release triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
GuyHarwood committed Feb 22, 2019
1 parent 9034f76 commit ef99832
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,12 @@ Solutions like promises and async functions drastically decrease the complexity
[Async functions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function) will further wrap generators and promises in a higher level syntax.
### ES6/ES7
Javascript is constantly changing and is actually just an implementation of a standard called [ECMAScript.](http://www.ecma-international.org)The term ECMAScript 6 or 7 refers to the specific version of this standard.
## Client side
Taking into account that[cross-browser compatibility](https://www.gov.uk/service-manual/technology/designing-for-different-browsers-and-devices)is necessary, HTML, CSS and Javascript must render web pages in the same way.
## Unit testing
For the purpose of testing the following libraries are used:
- [Karma](https://karma-runner.github.io)- a test runner that spawns a web server and executes source code against test code for each of the browsers connected
Expand All @@ -132,9 +130,7 @@ For the purpose of testing the following libraries are used:
## Code coverage
Code coverage is achieved through[Istanbul](https://istanbul.js.org/)which is an instrumentation library that tracks statement, branch, function coverage and generates a full report.
## Database Migrations
Migrations are incremental. Never edit an existing one, always create a new one and perform any transformations of existing data as necessary.
2 changes: 1 addition & 1 deletion load-test/bin/undo-generate-pupil-load-test-data.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ DELETE FROM mtc_admin.pupilLogonEvent
UPDATE mtc_admin.school SET pin=NULL
DELETE FROM mtc_admin.pupilFeedback
DELETE FROM mtc_admin.psychometricianReportCache
DELETE FROM mtc_admin.checkResult
DELETE FROM mtc_admin.[checkPin]
DELETE FROM mtc_admin.[check]
DELETE FROM mtc_admin.answer
DELETE FROM mtc_admin.checkResult
DELETE FROM mtc_admin.sessions
DELETE FROM mtc_admin.auditLog
UPDATE mtc_admin.pupil SET pupilStatus_id = 1

0 comments on commit ef99832

Please sign in to comment.