Skip to content

Commit 19f0792

Browse files
committed
test
1 parent 6da1340 commit 19f0792

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ashes/Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ tag:
5252
clean:
5353
rm -rf ./build/admin
5454

55-
# Do we actually need tests (not checks) on built aplication inside Ashes?
5655
.PHONY: test
5756
test: MSG=Testing
58-
test: notify
57+
test: notify flow lint mocha
5958

60-
.PHONY: check t
61-
check t: flow lint mocha
59+
60+
.PHONY: t
61+
t: flow lint mocha
6262

6363
.PHONY: mocha-spec
6464
mocha-spec:
@@ -142,4 +142,4 @@ prod p: clean build-prod
142142

143143
.PHONY: build
144144
build: MSG=Building
145-
build: notify clean install check build-styleguide build-prod
145+
build: notify clean install build-styleguide build-prod

ashes/src/components/promotions/sub-nav.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type SubNavProps = {
1414
applyType: string,
1515
};
1616

17-
const SubNav = (props: SubNavProps) => {
17+
const SubNav = (props: string) => {
1818
const params = {
1919
promotionId: props.promotionId,
2020
};

0 commit comments

Comments
 (0)