This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import configureMockStore from 'redux-mock-store' | |
import { Provider } from 'react-redux' | |
import { shallow, ShallowWrapper } from 'enzyme' | |
export type StringObject = { [key: string]: string } | |
export type StoreData = { [key: string]: string | StringObject } | |
export interface RenderShallowWithReduxOptions<T> { | |
children?: React.ReactNode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from 'react' | |
import configureMockStore from 'redux-mock-store' | |
import { Provider } from 'react-redux' | |
import { shallow, ShallowWrapper } from 'enzyme' | |
export type StringObject = { [key: string]: string } | |
export type StoreData = { [key: string]: string | StringObject } | |
export interface RenderShallowWithReduxOptions<T> { | |
children?: React.ReactNode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export enum HttpStatusCodes100 { | |
CONTINUE = 100, | |
SWITCHING_PROTOCOLS = 101, | |
PROCESSING = 102, | |
EARLY_HINTS = 103, | |
} | |
export enum HttpStatusCodes200 { | |
OK = 200, | |
CREATED = 201, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
NameVirtualHost *:80 | |
<VirtualHost *:80> | |
ServerName neos.t3local | |
SetEnv FLOW_CONTEXT Development | |
ServerAlias www.neos.t3local | |
DocumentRoot /var/www/neos/Neos-2.1/Web | |
<Directory ~ "/var/www/neos/Neos-2.1/"> |
NewerOlder