[next] Tests for new story filter and combo box (#2288)

* test: add tests for changes in stories page

* test: search box and moderate specific story

* fix: remaining snapshot

* fix: test
This commit is contained in:
Kiwi
2019-04-27 01:04:16 +02:00
committed by GitHub
parent b1efdad981
commit 60c8f9a0d5
13 changed files with 764 additions and 159 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ export type Overwrite<T, U> = Pick<T, Diff<keyof T, keyof U>> & U;
export type Sub<T, U> = Pick<T, Diff<keyof T, keyof U>>;
export type RequireProperty<T, P extends keyof T> = Omit<Partial<T>, P> &
export type RequireProperty<T, P extends keyof T> = Omit<T, P> &
Required<Pick<T, P>>;
/**