diff --git a/miscservices/TimeTest_js/src/main/js/default/test/List.test.js b/miscservices/TimeTest_js/src/main/js/default/test/List.test.js index 62932bde1e4ba649d86c491ea3c932641f4b6382..73a1578832846d4352ea23240d3671e097ff9d76 100755 --- a/miscservices/TimeTest_js/src/main/js/default/test/List.test.js +++ b/miscservices/TimeTest_js/src/main/js/default/test/List.test.js @@ -13,5 +13,4 @@ * limitations under the License. */ -require('./SystemTimeJsunit.test.js') -require('./SystemTimeJsunit.Pertest.js') \ No newline at end of file +require('./SystemTimeJsunit.test.js') \ No newline at end of file diff --git a/miscservices/TimeTest_js/src/main/js/default/test/SystemTimeJsunit.Pertest.js b/miscservices/TimeTest_js/src/main/js/default/test/SystemTimeJsunit.Pertest.js deleted file mode 100644 index d5924e8decc394d3e73c55f36eb3de9c0d733d37..0000000000000000000000000000000000000000 --- a/miscservices/TimeTest_js/src/main/js/default/test/SystemTimeJsunit.Pertest.js +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2021 Huawei Device Co., Ltd. - * Licensed under the Apache License, Version 2.0 (the 'License'); - * you may not use this file 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. - */ - -// @ts-nocheck -import {describe, beforeAll, beforeEach, afterEach, afterAll, it, expect} from 'deccjsunit/index' -import systemTime from '@ohos.systemtime' - -describe('TimeTest', function() { - console.log('start################################start'); - - /** - * @tc.number SUB_systemTime_setTime_JS_API_0100 - * @tc.name Test systemTime.setTime - * @tc.desc Test systemTime_setTime API functionality. - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('systemTime_setTime_test1', 0, async function (done) { - console.log("SUB_systemTime_setTime_JS_API_0100 start"); - systemTime.setTime(66666666, (err, data) => { // callback形式调用异步接口 - if ((typeof err !== 'undefined') && (err.code !== 0)) { - console.error('SetTime failed because ' + JSON.stringify(err)); - expect().assertFail(); - done(); - return; - } - console.info('SetTime success data : ' + JSON.stringify(data)); - expect(true).assertTrue(); - done(); - return; - }); - console.log('SUB_systemTime_setTime_JS_API_0100 end'); - }) - - /** - * @tc.number SUB_systemTime_setTimezone_JS_API_0100 - * @tc.name Test systemTime.setTimezone timezone = 'Anadyr, Russia' - * @tc.desc Test systemTime_setTimezone API functionality. - * @tc.size : MEDIUM - * @tc.type : Function - * @tc.level : Level 0 - */ - it('systemTime_setTimezone_test1', 0, async function (done) { - console.log("SUB_systemTime_setTimezone_JS_API_0100 start"); - systemTime.setTimezone('Asia/Shanghai', (err, data) => { // callback形式调用异步接口 - if ((typeof err !== 'undefined') && (err.code !== 0)) { - console.error('setTimezone failed because ' + JSON.stringify(err)); - expect().assertFail(); - done(); - return; - } - console.info('setTimezone success data : ' + JSON.stringify(data)); - expect(true).assertTrue(); - done(); - return; - }); - console.log('SUB_systemTime_setTimezone_JS_API_0100 end'); - }) -})