mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-06-13 09:25:39 +08:00
49 lines
1.8 KiB
JavaScript
49 lines
1.8 KiB
JavaScript
/*
|
|
* Copyright (c) 2016-present Invertase Limited & Contributors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this library except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
android.describe('perf()', () => {
|
|
describe('setPerformanceCollectionEnabled()', () => {
|
|
// TODO sometimes android launches with isPerformanceCollectionEnabled = false
|
|
xit('true', async () => {
|
|
should.equal(firebase.perf().isPerformanceCollectionEnabled, true);
|
|
await firebase.perf().setPerformanceCollectionEnabled(true);
|
|
should.equal(firebase.perf().isPerformanceCollectionEnabled, true);
|
|
await Utils.sleep(2000);
|
|
});
|
|
|
|
it('false', async () => {
|
|
await device.launchApp();
|
|
await firebase.perf().setPerformanceCollectionEnabled(false);
|
|
should.equal(firebase.perf().isPerformanceCollectionEnabled, false);
|
|
await Utils.sleep(1500);
|
|
await firebase.perf().setPerformanceCollectionEnabled(true);
|
|
should.equal(firebase.perf().isPerformanceCollectionEnabled, true);
|
|
await Utils.sleep(1500);
|
|
});
|
|
});
|
|
|
|
describe('startTrace()', () => {
|
|
it('resolves a started instance of Trace', async () => {
|
|
const trace = await firebase.perf().startTrace('invertase');
|
|
trace.constructor.name.should.be.equal('Trace');
|
|
trace._identifier.should.equal('invertase');
|
|
trace._started.should.equal(true);
|
|
await trace.stop();
|
|
});
|
|
});
|
|
});
|