-- Compiled with roblox-ts v3.0.0 local TS = _G[script] local exports = {} -- eslint-disable headers/header-format --[[ * * Test-agnostic assertion library for ROBLOX. * * @remarks * Exports the {@link expect} method as the primary entry point. * * @packageDocumentation ]] --[[ * * @license * Copyright 2024 Daymon Littrell-Reyes * * 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.import(script, script, "expect", "extensions") local _expect = TS.import(script, script, "expect") exports.expect = _expect.expect exports.extendMethods = _expect.extendMethods exports.extendNOPs = _expect.extendNOPs exports.extendNegations = _expect.extendNegations exports.getDefaultExpectConfig = _expect.getDefaultExpectConfig exports.resetDefaultExpectConfig = _expect.resetDefaultExpectConfig exports.setDefaultExpectConfig = _expect.setDefaultExpectConfig local _message = TS.import(script, script, "message") exports.ExpectMessageBuilder = _message.ExpectMessageBuilder exports.place = _message.place local _util = TS.import(script, script, "util") exports.computeFullProxyPath = _util.computeFullProxyPath exports.createProxy = _util.createProxy exports.err = _util.err exports.getNearestDefinedProxy = _util.getNearestDefinedProxy exports.getProxyParent = _util.getProxyParent exports.getProxyPath = _util.getProxyPath exports.getProxyValue = _util.getProxyValue exports.isProxy = _util.isProxy exports.withProxy = _util.withProxy return exports