Skip to content

Commit

Permalink
Merge pull request #1350 from flexion/sprint-11-addressed
Browse files Browse the repository at this point in the history
Addressing Sprint 11 PR comments
  • Loading branch information
rachaelparris authored Apr 9, 2019
2 parents 14d4ef9 + fd5a61a commit 743791c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion shared/src/business/entities/Case.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,7 @@ describe('Case entity', () => {
expect(caseToVerify.docketRecord.length).toEqual(0);
});

it('should not add to the docket record when the caption equivalent to the initial title', () => {
it('should not add to the docket record when the caption is equivalent to the initial title', () => {
const caseToVerify = new Case({
caseCaption: 'Caption',
initialTitle: 'Caption v. Commissioner of Internal Revenue, Respondent',
Expand Down
8 changes: 4 additions & 4 deletions web-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"scripts": {
"cypress": "cypress run",
"cypress:open": "CYPRESS=true cypress open --config watchForFileChanges=true",
"dev:cypress": "CYPRESS=true USTC_ENV=dev parcel --no-cache --no-hmr src/index.pug",
"dev": "USTC_ENV=dev parcel --no-cache --no-hmr src/index.pug",
"dev:cognito": "COGNITO=true USTC_ENV=dev parcel --no-cache --no-hmr src/index.pug",
"dev:cypress": "CYPRESS=true USTC_ENV=dev parcel --no-cache --no-source-maps --no-hmr src/index.pug",
"dev": "USTC_ENV=dev parcel --no-cache --no-source-maps --no-hmr src/index.pug",
"dev:cognito": "COGNITO=true USTC_ENV=dev parcel --no-cache --no-source-maps --no-hmr src/index.pug",
"dev:debug": "USTC_DEBUG=true npm run dev",
"dist": "rm -rf dist; USTC_ENV=prod parcel build --no-cache src/index.pug",
"dist": "rm -rf dist; USTC_ENV=prod parcel build --no-cache --no-source-maps src/index.pug",
"lint": "eslint ./src && stylelint ./src/**/*.scss",
"test": "jest .*test\\.js$",
"test:watch": "jest --watch .*test\\.js$",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ describe('formatYearAmounts', () => {
);
});

it('sorts the docet record in the expected order', async () => {
it('sorts the docket record in the expected order', async () => {
const caseDetail = {
caseCaption: 'Brett Osborne, Petitioner',
docketRecord: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe('setFocusedWorkItemSequence', () => {
]);
});

it('should collapse the alaready expanded work item of uiKey of a', async () => {
it('should collapse the already expanded work item of uiKey of a', async () => {
test.setState('workQueue', [
{
isFocused: true,
Expand Down
2 changes: 1 addition & 1 deletion web-client/src/ustc-ui/Text/Text.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ describe('Text Component', () => {
});

describe('type display', () => {
it('should show number as text text if binded value is available', () => {
it('should show number as text if binded value is available', () => {
const testModule = {
state: {
text: 123421342,
Expand Down

0 comments on commit 743791c

Please sign in to comment.