blob: e9f15d2c2e4ef7114d618177bebde1551d191105 [file] [log] [blame]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {createTarget} from '../../testing/EnvironmentHelpers.js';
import {describeWithMockConnection} from '../../testing/MockConnection.js';
import * as SDK from './sdk.js';
describeWithMockConnection('AccessibilityModel', () => {
it('can be instantiated', () => {
assert.doesNotThrow(() => {
const target = createTarget();
new SDK.AccessibilityModel.AccessibilityModel(target);
});
});
});