blob: 5d911a79f2e876cd7f9f19a2bf58f9aa7994127a [file] [log] [blame]
// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
@TestOn('wasm')
import 'package:test/test.dart';
void main() {
test('1 == 1', () {
expect(1, equals(1));
});
}