This repository was archived by the owner on Jun 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +66
-2
lines changed
packages/datafile-manager Expand file tree Collapse file tree 5 files changed +66
-2
lines changed Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright 2019, Optimizely
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
import EventEmitter from '../src/eventEmitter'
2
18
3
19
describe ( 'event_emitter' , ( ) => {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright 2019, Optimizely
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
import StaticDatafileManager from '../src/staticDatafileManager'
2
18
3
19
describe ( 'staticDatafileManager' , ( ) => {
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright 2019, Optimizely
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
import { TimeoutFactory } from '../src/timeoutFactory'
2
18
3
19
export default class TestTimeoutFactory implements TimeoutFactory {
Original file line number Diff line number Diff line change 1
- import { TimeoutFactory } from "./timeoutFactory" ;
2
-
3
1
/**
4
2
* Copyright 2019, Optimizely
5
3
*
@@ -16,6 +14,8 @@ import { TimeoutFactory } from "./timeoutFactory";
16
14
* limitations under the License.
17
15
*/
18
16
17
+ import { TimeoutFactory } from "./timeoutFactory" ;
18
+
19
19
export interface DatafileUpdate {
20
20
datafile : object
21
21
}
Original file line number Diff line number Diff line change
1
+ /**
2
+ * Copyright 2019, Optimizely
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
1
17
import { DatafileManager , DatafileUpdate } from './datafileManager' ;
2
18
3
19
const doNothing = ( ) => { } ;
You can’t perform that action at this time.
0 commit comments